home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / guile / 1.8 / guile-procedures.txt
Text File  |  2009-10-01  |  293KB  |  8,715 lines

  1. This is guile-procedures.txt, produced by makeinfo version 4.13 from
  2. guile-procedures.texi.
  3.  
  4. acons
  5.  
  6.  -- Scheme Procedure: acons key value alist
  7.      Add a new key-value pair to ALIST.  A new pair is created whose
  8.      car is KEY and whose cdr is VALUE, and the pair is consed onto
  9.      ALIST, and the new list is returned.  This function is _not_
  10.      destructive; ALIST is not modified.
  11.  
  12.     sloppy-assq
  13.  
  14.  -- Scheme Procedure: sloppy-assq key alist
  15.      Behaves like `assq' but does not do any error checking.
  16.      Recommended only for use in Guile internals.
  17.  
  18.     sloppy-assv
  19.  
  20.  -- Scheme Procedure: sloppy-assv key alist
  21.      Behaves like `assv' but does not do any error checking.
  22.      Recommended only for use in Guile internals.
  23.  
  24.     sloppy-assoc
  25.  
  26.  -- Scheme Procedure: sloppy-assoc key alist
  27.      Behaves like `assoc' but does not do any error checking.
  28.      Recommended only for use in Guile internals.
  29.  
  30.     assq
  31.  
  32.  -- Scheme Procedure: assq key alist
  33.  -- Scheme Procedure: assv key alist
  34.  -- Scheme Procedure: assoc key alist
  35.      Fetch the entry in ALIST that is associated with KEY.  To decide
  36.      whether the argument KEY matches a particular entry in ALIST,
  37.      `assq' compares keys with `eq?', `assv' uses `eqv?' and `assoc'
  38.      uses `equal?'.  If KEY cannot be found in ALIST (according to
  39.      whichever equality predicate is in use), then return `#f'.  These
  40.      functions return the entire alist entry found (i.e. both the key
  41.      and the value).
  42.  
  43.     assv
  44.  
  45.  -- Scheme Procedure: assv key alist
  46.      Behaves like `assq' but uses `eqv?' for key comparison.
  47.  
  48.     assoc
  49.  
  50.  -- Scheme Procedure: assoc key alist
  51.      Behaves like `assq' but uses `equal?' for key comparison.
  52.  
  53.     assq-ref
  54.  
  55.  -- Scheme Procedure: assq-ref alist key
  56.  -- Scheme Procedure: assv-ref alist key
  57.  -- Scheme Procedure: assoc-ref alist key
  58.      Like `assq', `assv' and `assoc', except that only the value
  59.      associated with KEY in ALIST is returned.  These functions are
  60.      equivalent to
  61.  
  62.           (let ((ent (ASSOCIATOR KEY ALIST)))
  63.             (and ent (cdr ent)))
  64.  
  65.      where ASSOCIATOR is one of `assq', `assv' or `assoc'.
  66.  
  67.     assv-ref
  68.  
  69.  -- Scheme Procedure: assv-ref alist key
  70.      Behaves like `assq-ref' but uses `eqv?' for key comparison.
  71.  
  72.     assoc-ref
  73.  
  74.  -- Scheme Procedure: assoc-ref alist key
  75.      Behaves like `assq-ref' but uses `equal?' for key comparison.
  76.  
  77.     assq-set!
  78.  
  79.  -- Scheme Procedure: assq-set! alist key val
  80.  -- Scheme Procedure: assv-set! alist key value
  81.  -- Scheme Procedure: assoc-set! alist key value
  82.      Reassociate KEY in ALIST with VALUE: find any existing ALIST entry
  83.      for KEY and associate it with the new VALUE.  If ALIST does not
  84.      contain an entry for KEY, add a new one.  Return the (possibly
  85.      new) alist.
  86.  
  87.      These functions do not attempt to verify the structure of ALIST,
  88.      and so may cause unusual results if passed an object that is not an
  89.      association list.
  90.  
  91.     assv-set!
  92.  
  93.  -- Scheme Procedure: assv-set! alist key val
  94.      Behaves like `assq-set!' but uses `eqv?' for key comparison.
  95.  
  96.     assoc-set!
  97.  
  98.  -- Scheme Procedure: assoc-set! alist key val
  99.      Behaves like `assq-set!' but uses `equal?' for key comparison.
  100.  
  101.     assq-remove!
  102.  
  103.  -- Scheme Procedure: assq-remove! alist key
  104.  -- Scheme Procedure: assv-remove! alist key
  105.  -- Scheme Procedure: assoc-remove! alist key
  106.      Delete the first entry in ALIST associated with KEY, and return
  107.      the resulting alist.
  108.  
  109.     assv-remove!
  110.  
  111.  -- Scheme Procedure: assv-remove! alist key
  112.      Behaves like `assq-remove!' but uses `eqv?' for key comparison.
  113.  
  114.     assoc-remove!
  115.  
  116.  -- Scheme Procedure: assoc-remove! alist key
  117.      Behaves like `assq-remove!' but uses `equal?' for key comparison.
  118.  
  119.     make-arbiter
  120.  
  121.  -- Scheme Procedure: make-arbiter name
  122.      Return an arbiter object, initially unlocked.  Currently NAME is
  123.      only used for diagnostic output.
  124.  
  125.     try-arbiter
  126.  
  127.  -- Scheme Procedure: try-arbiter arb
  128.      If ARB is unlocked, then lock it and return `#t'.  If ARB is
  129.      already locked, then do nothing and return `#f'.
  130.  
  131.     release-arbiter
  132.  
  133.  -- Scheme Procedure: release-arbiter arb
  134.      If ARB is locked, then unlock it and return `#t'.  If ARB is
  135.      already unlocked, then do nothing and return `#f'.
  136.  
  137.      Typical usage is for the thread which locked an arbiter to later
  138.      release it, but that's not required, any thread can release it.
  139.  
  140.     async
  141.  
  142.  -- Scheme Procedure: async thunk
  143.      Create a new async for the procedure THUNK.
  144.  
  145.     async-mark
  146.  
  147.  -- Scheme Procedure: async-mark a
  148.      Mark the async A for future execution.
  149.  
  150.     run-asyncs
  151.  
  152.  -- Scheme Procedure: run-asyncs list_of_a
  153.      Execute all thunks from the asyncs of the list LIST_OF_A.
  154.  
  155.     system-async
  156.  
  157.  -- Scheme Procedure: system-async thunk
  158.      This function is deprecated.  You can use THUNK directly instead
  159.      of explicitly creating an async object.
  160.  
  161.  
  162.     system-async-mark
  163.  
  164.  -- Scheme Procedure: system-async-mark proc [thread]
  165.      Mark PROC (a procedure with zero arguments) for future execution
  166.      in THREAD.  If PROC has already been marked for THREAD but has not
  167.      been executed yet, this call has no effect.  If THREAD is omitted,
  168.      the thread that called `system-async-mark' is used.
  169.  
  170.      This procedure is not safe to be called from C signal handlers.
  171.      Use `scm_sigaction' or `scm_sigaction_for_thread' to install
  172.      signal handlers.
  173.  
  174.     noop
  175.  
  176.  -- Scheme Procedure: noop . args
  177.      Do nothing.  When called without arguments, return `#f', otherwise
  178.      return the first argument.
  179.  
  180.     unmask-signals
  181.  
  182.  -- Scheme Procedure: unmask-signals
  183.      Unmask signals. The returned value is not specified.
  184.  
  185.     mask-signals
  186.  
  187.  -- Scheme Procedure: mask-signals
  188.      Mask signals. The returned value is not specified.
  189.  
  190.     call-with-blocked-asyncs
  191.  
  192.  -- Scheme Procedure: call-with-blocked-asyncs proc
  193.      Call PROC with no arguments and block the execution of system
  194.      asyncs by one level for the current thread while it is running.
  195.      Return the value returned by PROC.
  196.  
  197.  
  198.     call-with-unblocked-asyncs
  199.  
  200.  -- Scheme Procedure: call-with-unblocked-asyncs proc
  201.      Call PROC with no arguments and unblock the execution of system
  202.      asyncs by one level for the current thread while it is running.
  203.      Return the value returned by PROC.
  204.  
  205.  
  206.     display-error
  207.  
  208.  -- Scheme Procedure: display-error stack port subr message args rest
  209.      Display an error message to the output port PORT.  STACK is the
  210.      saved stack for the error, SUBR is the name of the procedure in
  211.      which the error occurred and MESSAGE is the actual error message,
  212.      which may contain formatting instructions. These will format the
  213.      arguments in the list ARGS accordingly.  REST is currently ignored.
  214.  
  215.     display-application
  216.  
  217.  -- Scheme Procedure: display-application frame [port [indent]]
  218.      Display a procedure application FRAME to the output port PORT.
  219.      INDENT specifies the indentation of the output.
  220.  
  221.     display-backtrace
  222.  
  223.  -- Scheme Procedure: display-backtrace stack port [first [depth
  224.           [highlights]]]
  225.      Display a backtrace to the output port PORT. STACK is the stack to
  226.      take the backtrace from, FIRST specifies where in the stack to
  227.      start and DEPTH how much frames to display. Both FIRST and DEPTH
  228.      can be `#f', which means that default values will be used.  When
  229.      HIGHLIGHTS is given, it should be a list and all members of it are
  230.      highligthed in the backtrace.
  231.  
  232.     backtrace
  233.  
  234.  -- Scheme Procedure: backtrace [highlights]
  235.      Display a backtrace of the stack saved by the last error to the
  236.      current output port.  When HIGHLIGHTS is given, it should be a
  237.      list and all members of it are highligthed in the backtrace.
  238.  
  239.     not
  240.  
  241.  -- Scheme Procedure: not x
  242.      Return `#t' iff X is `#f', else return `#f'.
  243.  
  244.     boolean?
  245.  
  246.  -- Scheme Procedure: boolean? obj
  247.      Return `#t' iff OBJ is either `#t' or `#f'.
  248.  
  249.     char?
  250.  
  251.  -- Scheme Procedure: char? x
  252.      Return `#t' iff X is a character, else `#f'.
  253.  
  254.     char=?
  255.  
  256.  -- Scheme Procedure: char=? x y
  257.      Return `#t' iff X is the same character as Y, else `#f'.
  258.  
  259.     char<?
  260.  
  261.  -- Scheme Procedure: char<? x y
  262.      Return `#t' iff X is less than Y in the ASCII sequence, else `#f'.
  263.  
  264.     char<=?
  265.  
  266.  -- Scheme Procedure: char<=? x y
  267.      Return `#t' iff X is less than or equal to Y in the ASCII
  268.      sequence, else `#f'.
  269.  
  270.     char>?
  271.  
  272.  -- Scheme Procedure: char>? x y
  273.      Return `#t' iff X is greater than Y in the ASCII sequence, else
  274.      `#f'.
  275.  
  276.     char>=?
  277.  
  278.  -- Scheme Procedure: char>=? x y
  279.      Return `#t' iff X is greater than or equal to Y in the ASCII
  280.      sequence, else `#f'.
  281.  
  282.     char-ci=?
  283.  
  284.  -- Scheme Procedure: char-ci=? x y
  285.      Return `#t' iff X is the same character as Y ignoring case, else
  286.      `#f'.
  287.  
  288.     char-ci<?
  289.  
  290.  -- Scheme Procedure: char-ci<? x y
  291.      Return `#t' iff X is less than Y in the ASCII sequence ignoring
  292.      case, else `#f'.
  293.  
  294.     char-ci<=?
  295.  
  296.  -- Scheme Procedure: char-ci<=? x y
  297.      Return `#t' iff X is less than or equal to Y in the ASCII sequence
  298.      ignoring case, else `#f'.
  299.  
  300.     char-ci>?
  301.  
  302.  -- Scheme Procedure: char-ci>? x y
  303.      Return `#t' iff X is greater than Y in the ASCII sequence ignoring
  304.      case, else `#f'.
  305.  
  306.     char-ci>=?
  307.  
  308.  -- Scheme Procedure: char-ci>=? x y
  309.      Return `#t' iff X is greater than or equal to Y in the ASCII
  310.      sequence ignoring case, else `#f'.
  311.  
  312.     char-alphabetic?
  313.  
  314.  -- Scheme Procedure: char-alphabetic? chr
  315.      Return `#t' iff CHR is alphabetic, else `#f'.
  316.  
  317.  
  318.     char-numeric?
  319.  
  320.  -- Scheme Procedure: char-numeric? chr
  321.      Return `#t' iff CHR is numeric, else `#f'.
  322.  
  323.  
  324.     char-whitespace?
  325.  
  326.  -- Scheme Procedure: char-whitespace? chr
  327.      Return `#t' iff CHR is whitespace, else `#f'.
  328.  
  329.  
  330.     char-upper-case?
  331.  
  332.  -- Scheme Procedure: char-upper-case? chr
  333.      Return `#t' iff CHR is uppercase, else `#f'.
  334.  
  335.  
  336.     char-lower-case?
  337.  
  338.  -- Scheme Procedure: char-lower-case? chr
  339.      Return `#t' iff CHR is lowercase, else `#f'.
  340.  
  341.  
  342.     char-is-both?
  343.  
  344.  -- Scheme Procedure: char-is-both? chr
  345.      Return `#t' iff CHR is either uppercase or lowercase, else `#f'.
  346.  
  347.  
  348.     char->integer
  349.  
  350.  -- Scheme Procedure: char->integer chr
  351.      Return the number corresponding to ordinal position of CHR in the
  352.      ASCII sequence.
  353.  
  354.     integer->char
  355.  
  356.  -- Scheme Procedure: integer->char n
  357.      Return the character at position N in the ASCII sequence.
  358.  
  359.     char-upcase
  360.  
  361.  -- Scheme Procedure: char-upcase chr
  362.      Return the uppercase character version of CHR.
  363.  
  364.     char-downcase
  365.  
  366.  -- Scheme Procedure: char-downcase chr
  367.      Return the lowercase character version of CHR.
  368.  
  369.     with-continuation-barrier
  370.  
  371.  -- Scheme Procedure: with-continuation-barrier proc
  372.      Call PROC and return its result.  Do not allow the invocation of
  373.      continuations that would leave or enter the dynamic extent of the
  374.      call to `with-continuation-barrier'.  Such an attempt causes an
  375.      error to be signaled.
  376.  
  377.      Throws (such as errors) that are not caught from within PROC are
  378.      caught by `with-continuation-barrier'.  In that case, a short
  379.      message is printed to the current error port and `#f' is returned.
  380.  
  381.      Thus, `with-continuation-barrier' returns exactly once.
  382.  
  383.  
  384.     debug-options-interface
  385.  
  386.  -- Scheme Procedure: debug-options-interface [setting]
  387.      Option interface for the debug options. Instead of using this
  388.      procedure directly, use the procedures `debug-enable',
  389.      `debug-disable', `debug-set!' and `debug-options'.
  390.  
  391.     with-traps
  392.  
  393.  -- Scheme Procedure: with-traps thunk
  394.      Call THUNK with traps enabled.
  395.  
  396.     memoized?
  397.  
  398.  -- Scheme Procedure: memoized? obj
  399.      Return `#t' if OBJ is memoized.
  400.  
  401.     unmemoize-expr
  402.  
  403.  -- Scheme Procedure: unmemoize-expr m
  404.      Unmemoize the memoized expression M,
  405.  
  406.     memoized-environment
  407.  
  408.  -- Scheme Procedure: memoized-environment m
  409.      Return the environment of the memoized expression M.
  410.  
  411.     procedure-name
  412.  
  413.  -- Scheme Procedure: procedure-name proc
  414.      Return the name of the procedure PROC
  415.  
  416.     procedure-source
  417.  
  418.  -- Scheme Procedure: procedure-source proc
  419.      Return the source of the procedure PROC.
  420.  
  421.     procedure-environment
  422.  
  423.  -- Scheme Procedure: procedure-environment proc
  424.      Return the environment of the procedure PROC.
  425.  
  426.     local-eval
  427.  
  428.  -- Scheme Procedure: local-eval exp [env]
  429.      Evaluate EXP in its environment.  If ENV is supplied, it is the
  430.      environment in which to evaluate EXP.  Otherwise, EXP must be a
  431.      memoized code object (in which case, its environment is implicit).
  432.  
  433.     debug-object?
  434.  
  435.  -- Scheme Procedure: debug-object? obj
  436.      Return `#t' if OBJ is a debug object.
  437.  
  438.     issue-deprecation-warning
  439.  
  440.  -- Scheme Procedure: issue-deprecation-warning . msgs
  441.      Output MSGS to `(current-error-port)' when this is the first call
  442.      to `issue-deprecation-warning' with this specific MSGS.  Do
  443.      nothing otherwise. The argument MSGS should be a list of strings;
  444.      they are printed in turn, each one followed by a newline.
  445.  
  446.     include-deprecated-features
  447.  
  448.  -- Scheme Procedure: include-deprecated-features
  449.      Return `#t' iff deprecated features should be included in public
  450.      interfaces.
  451.  
  452.     substring-move-left!
  453.  
  454.  -- Scheme Procedure: substring-move-left!
  455.      implemented by the C function "scm_substring_move_x"
  456.  
  457.     substring-move-right!
  458.  
  459.  -- Scheme Procedure: substring-move-right!
  460.      implemented by the C function "scm_substring_move_x"
  461.  
  462.     c-registered-modules
  463.  
  464.  -- Scheme Procedure: c-registered-modules
  465.      Return a list of the object code modules that have been imported
  466.      into the current Guile process.  Each element of the list is a
  467.      pair whose car is the name of the module, and whose cdr is the
  468.      function handle for that module's initializer function.  The name
  469.      is the string that has been passed to scm_register_module_xxx.
  470.  
  471.     c-clear-registered-modules
  472.  
  473.  -- Scheme Procedure: c-clear-registered-modules
  474.      Destroy the list of modules registered with the current Guile
  475.      process.  The return value is unspecified.  *Warning:* this
  476.      function does not actually unlink or deallocate these modules, but
  477.      only destroys the records of which modules have been loaded.  It
  478.      should therefore be used only by module bookkeeping operations.
  479.  
  480.     close-all-ports-except
  481.  
  482.  -- Scheme Procedure: close-all-ports-except . ports
  483.      [DEPRECATED] Close all open file ports used by the interpreter
  484.      except for those supplied as arguments.  This procedure was
  485.      intended to be used before an exec call to close file descriptors
  486.      which are not needed in the new process.  However it has the
  487.      undesirable side effect of flushing buffers, so it's deprecated.
  488.      Use port-for-each instead.
  489.  
  490.     variable-set-name-hint!
  491.  
  492.  -- Scheme Procedure: variable-set-name-hint! var hint
  493.      Do not use this function.
  494.  
  495.     builtin-variable
  496.  
  497.  -- Scheme Procedure: builtin-variable name
  498.      Do not use this function.
  499.  
  500.     sloppy-memq
  501.  
  502.  -- Scheme Procedure: sloppy-memq x lst
  503.      This procedure behaves like `memq', but does no type or error
  504.      checking.  Its use is recommended only in writing Guile internals,
  505.      not for high-level Scheme programs.
  506.  
  507.     sloppy-memv
  508.  
  509.  -- Scheme Procedure: sloppy-memv x lst
  510.      This procedure behaves like `memv', but does no type or error
  511.      checking.  Its use is recommended only in writing Guile internals,
  512.      not for high-level Scheme programs.
  513.  
  514.     sloppy-member
  515.  
  516.  -- Scheme Procedure: sloppy-member x lst
  517.      This procedure behaves like `member', but does no type or error
  518.      checking.  Its use is recommended only in writing Guile internals,
  519.      not for high-level Scheme programs.
  520.  
  521.     read-and-eval!
  522.  
  523.  -- Scheme Procedure: read-and-eval! [port]
  524.      Read a form from PORT (standard input by default), and evaluate it
  525.      (memoizing it in the process) in the top-level environment.  If no
  526.      data is left to be read from PORT, an `end-of-file' error is
  527.      signalled.
  528.  
  529.     string->obarray-symbol
  530.  
  531.  -- Scheme Procedure: string->obarray-symbol o s [softp]
  532.      Intern a new symbol in OBARRAY, a symbol table, with name STRING.
  533.  
  534.      If OBARRAY is `#f', use the default system symbol table.  If
  535.      OBARRAY is `#t', the symbol should not be interned in any symbol
  536.      table; merely return the pair (SYMBOL . #<UNDEFINED>).
  537.  
  538.      The SOFT? argument determines whether new symbol table entries
  539.      should be created when the specified symbol is not already present
  540.      in OBARRAY.  If SOFT? is specified and is a true value, then new
  541.      entries should not be added for symbols not already present in the
  542.      table; instead, simply return `#f'.
  543.  
  544.     intern-symbol
  545.  
  546.  -- Scheme Procedure: intern-symbol o s
  547.      Add a new symbol to OBARRAY with name STRING, bound to an
  548.      unspecified initial value.  The symbol table is not modified if a
  549.      symbol with this name is already present.
  550.  
  551.     unintern-symbol
  552.  
  553.  -- Scheme Procedure: unintern-symbol o s
  554.      Remove the symbol with name STRING from OBARRAY.  This function
  555.      returns `#t' if the symbol was present and `#f' otherwise.
  556.  
  557.     symbol-binding
  558.  
  559.  -- Scheme Procedure: symbol-binding o s
  560.      Look up in OBARRAY the symbol whose name is STRING, and return the
  561.      value to which it is bound.  If OBARRAY is `#f', use the global
  562.      symbol table.  If STRING is not interned in OBARRAY, an error is
  563.      signalled.
  564.  
  565.     symbol-bound?
  566.  
  567.  -- Scheme Procedure: symbol-bound? o s
  568.      Return `#t' if OBARRAY contains a symbol with name STRING bound to
  569.      a defined value.  This differs from SYMBOL-INTERNED? in that the
  570.      mere mention of a symbol usually causes it to be interned;
  571.      `symbol-bound?' determines whether a symbol has been given any
  572.      meaningful value.
  573.  
  574.     symbol-set!
  575.  
  576.  -- Scheme Procedure: symbol-set! o s v
  577.      Find the symbol in OBARRAY whose name is STRING, and rebind it to
  578.      VALUE.  An error is signalled if STRING is not present in OBARRAY.
  579.  
  580.     gentemp
  581.  
  582.  -- Scheme Procedure: gentemp [prefix [obarray]]
  583.      Create a new symbol with a name unique in an obarray.  The name is
  584.      constructed from an optional string PREFIX and a counter value.
  585.      The default prefix is `t'.  The OBARRAY is specified as a second
  586.      optional argument.  Default is the system obarray where all normal
  587.      symbols are interned.  The counter is increased by 1 at each call.
  588.      There is no provision for resetting the counter.
  589.  
  590.     guardian-destroyed?
  591.  
  592.  -- Scheme Procedure: guardian-destroyed? guardian
  593.      Return `#t' if GUARDIAN has been destroyed, otherwise `#f'.
  594.  
  595.     guardian-greedy?
  596.  
  597.  -- Scheme Procedure: guardian-greedy? guardian
  598.      Return `#t' if GUARDIAN is a greedy guardian, otherwise `#f'.
  599.  
  600.     destroy-guardian!
  601.  
  602.  -- Scheme Procedure: destroy-guardian! guardian
  603.      Destroys GUARDIAN, by making it impossible to put any more objects
  604.      in it or get any objects from it.  It also unguards any objects
  605.      guarded by GUARDIAN.
  606.  
  607.     make-keyword-from-dash-symbol
  608.  
  609.  -- Scheme Procedure: make-keyword-from-dash-symbol symbol
  610.      Make a keyword object from a SYMBOL that starts with a dash.
  611.  
  612.     keyword-dash-symbol
  613.  
  614.  -- Scheme Procedure: keyword-dash-symbol keyword
  615.      Return the dash symbol for KEYWORD.  This is the inverse of
  616.      `make-keyword-from-dash-symbol'.
  617.  
  618.     dynamic-link
  619.  
  620.  -- Scheme Procedure: dynamic-link filename
  621.      Find the shared object (shared library) denoted by FILENAME and
  622.      link it into the running Guile application.  The returned scheme
  623.      object is a "handle" for the library which can be passed to
  624.      `dynamic-func', `dynamic-call' etc.
  625.  
  626.      Searching for object files is system dependent.  Normally, if
  627.      FILENAME does have an explicit directory it will be searched for
  628.      in locations such as `/usr/lib' and `/usr/local/lib'.
  629.  
  630.     dynamic-object?
  631.  
  632.  -- Scheme Procedure: dynamic-object? obj
  633.      Return `#t' if OBJ is a dynamic object handle, or `#f' otherwise.
  634.  
  635.     dynamic-unlink
  636.  
  637.  -- Scheme Procedure: dynamic-unlink dobj
  638.      Unlink a dynamic object from the application, if possible.  The
  639.      object must have been linked by `dynamic-link', with DOBJ the
  640.      corresponding handle.  After this procedure is called, the handle
  641.      can no longer be used to access the object.
  642.  
  643.     dynamic-func
  644.  
  645.  -- Scheme Procedure: dynamic-func name dobj
  646.      Return a "handle" for the function NAME in the shared object
  647.      referred to by DOBJ.  The handle can be passed to `dynamic-call'
  648.      to actually call the function.
  649.  
  650.      Regardless whether your C compiler prepends an underscore `_' to
  651.      the global names in a program, you should *not* include this
  652.      underscore in NAME since it will be added automatically when
  653.      necessary.
  654.  
  655.     dynamic-call
  656.  
  657.  -- Scheme Procedure: dynamic-call func dobj
  658.      Call a C function in a dynamic object.  Two styles of invocation
  659.      are supported:
  660.  
  661.         * FUNC can be a function handle returned by `dynamic-func'.  In
  662.           this case DOBJ is ignored
  663.  
  664.         * FUNC can be a string with the name of the function to call,
  665.           with DOBJ the handle of the dynamic object in which to find
  666.           the function.  This is equivalent to
  667.  
  668.                (dynamic-call (dynamic-func FUNC DOBJ) #f)
  669.  
  670.      In either case, the function is passed no arguments and its return
  671.      value is ignored.
  672.  
  673.     dynamic-args-call
  674.  
  675.  -- Scheme Procedure: dynamic-args-call func dobj args
  676.      Call the C function indicated by FUNC and DOBJ, just like
  677.      `dynamic-call', but pass it some arguments and return its return
  678.      value.  The C function is expected to take two arguments and
  679.      return an `int', just like `main':
  680.           int c_func (int argc, char **argv);
  681.  
  682.      The parameter ARGS must be a list of strings and is converted into
  683.      an array of `char *'.  The array is passed in ARGV and its size in
  684.      ARGC.  The return value is converted to a Scheme number and
  685.      returned from the call to `dynamic-args-call'.
  686.  
  687.     dynamic-wind
  688.  
  689.  -- Scheme Procedure: dynamic-wind in_guard thunk out_guard
  690.      All three arguments must be 0-argument procedures.  IN_GUARD is
  691.      called, then THUNK, then OUT_GUARD.
  692.  
  693.      If, any time during the execution of THUNK, the continuation of
  694.      the `dynamic_wind' expression is escaped non-locally, OUT_GUARD is
  695.      called.  If the continuation of the dynamic-wind is re-entered,
  696.      IN_GUARD is called.  Thus IN_GUARD and OUT_GUARD may be called any
  697.      number of times.
  698.           (define x 'normal-binding)
  699.           => x
  700.           (define a-cont  (call-with-current-continuation
  701.                     (lambda (escape)
  702.                        (let ((old-x x))
  703.                          (dynamic-wind
  704.                         ;; in-guard:
  705.                         ;;
  706.                         (lambda () (set! x 'special-binding))
  707.  
  708.                         ;; thunk
  709.                         ;;
  710.                          (lambda () (display x) (newline)
  711.                                (call-with-current-continuation escape)
  712.                                (display x) (newline)
  713.                                x)
  714.  
  715.                         ;; out-guard:
  716.                         ;;
  717.                         (lambda () (set! x old-x)))))))
  718.  
  719.           ;; Prints:
  720.           special-binding
  721.           ;; Evaluates to:
  722.           => a-cont
  723.           x
  724.           => normal-binding
  725.           (a-cont #f)
  726.           ;; Prints:
  727.           special-binding
  728.           ;; Evaluates to:
  729.           => a-cont  ;; the value of the (define a-cont...)
  730.           x
  731.           => normal-binding
  732.           a-cont
  733.           => special-binding
  734.  
  735.     environment?
  736.  
  737.  -- Scheme Procedure: environment? obj
  738.      Return `#t' if OBJ is an environment, or `#f' otherwise.
  739.  
  740.     environment-bound?
  741.  
  742.  -- Scheme Procedure: environment-bound? env sym
  743.      Return `#t' if SYM is bound in ENV, or `#f' otherwise.
  744.  
  745.     environment-ref
  746.  
  747.  -- Scheme Procedure: environment-ref env sym
  748.      Return the value of the location bound to SYM in ENV. If SYM is
  749.      unbound in ENV, signal an `environment:unbound' error.
  750.  
  751.     environment-fold
  752.  
  753.  -- Scheme Procedure: environment-fold env proc init
  754.      Iterate over all the bindings in ENV, accumulating some value.
  755.      For each binding in ENV, apply PROC to the symbol bound, its
  756.      value, and the result from the previous application of PROC.  Use
  757.      INIT as PROC's third argument the first time PROC is applied.  If
  758.      ENV contains no bindings, this function simply returns INIT.  If
  759.      ENV binds the symbol sym1 to the value val1, sym2 to val2, and so
  760.      on, then this procedure computes:
  761.             (proc sym1 val1
  762.                   (proc sym2 val2
  763.                         ...
  764.                         (proc symn valn
  765.                               init)))
  766.      Each binding in ENV will be processed exactly once.
  767.      `environment-fold' makes no guarantees about the order in which
  768.      the bindings are processed.  Here is a function which, given an
  769.      environment, constructs an association list representing that
  770.      environment's bindings, using environment-fold:
  771.             (define (environment->alist env)
  772.               (environment-fold env
  773.                                 (lambda (sym val tail)
  774.                                   (cons (cons sym val) tail))
  775.                                 '()))
  776.  
  777.     environment-define
  778.  
  779.  -- Scheme Procedure: environment-define env sym val
  780.      Bind SYM to a new location containing VAL in ENV. If SYM is
  781.      already bound to another location in ENV and the binding is
  782.      mutable, that binding is replaced.  The new binding and location
  783.      are both mutable. The return value is unspecified.  If SYM is
  784.      already bound in ENV, and the binding is immutable, signal an
  785.      `environment:immutable-binding' error.
  786.  
  787.     environment-undefine
  788.  
  789.  -- Scheme Procedure: environment-undefine env sym
  790.      Remove any binding for SYM from ENV. If SYM is unbound in ENV, do
  791.      nothing.  The return value is unspecified.  If SYM is already
  792.      bound in ENV, and the binding is immutable, signal an
  793.      `environment:immutable-binding' error.
  794.  
  795.     environment-set!
  796.  
  797.  -- Scheme Procedure: environment-set! env sym val
  798.      If ENV binds SYM to some location, change that location's value to
  799.      VAL.  The return value is unspecified.  If SYM is not bound in
  800.      ENV, signal an `environment:unbound' error.  If ENV binds SYM to
  801.      an immutable location, signal an `environment:immutable-location'
  802.      error.
  803.  
  804.     environment-cell
  805.  
  806.  -- Scheme Procedure: environment-cell env sym for_write
  807.      Return the value cell which ENV binds to SYM, or `#f' if the
  808.      binding does not live in a value cell.  The argument FOR-WRITE
  809.      indicates whether the caller intends to modify the variable's
  810.      value by mutating the value cell.  If the variable is immutable,
  811.      then `environment-cell' signals an
  812.      `environment:immutable-location' error.  If SYM is unbound in ENV,
  813.      signal an `environment:unbound' error.  If you use this function,
  814.      you should consider using `environment-observe', to be notified
  815.      when SYM gets re-bound to a new value cell, or becomes undefined.
  816.  
  817.     environment-observe
  818.  
  819.  -- Scheme Procedure: environment-observe env proc
  820.      Whenever ENV's bindings change, apply PROC to ENV.  This function
  821.      returns an object, token, which you can pass to
  822.      `environment-unobserve' to remove PROC from the set of procedures
  823.      observing ENV.  The type and value of token is unspecified.
  824.  
  825.     environment-observe-weak
  826.  
  827.  -- Scheme Procedure: environment-observe-weak env proc
  828.      This function is the same as environment-observe, except that the
  829.      reference ENV retains to PROC is a weak reference. This means
  830.      that, if there are no other live, non-weak references to PROC, it
  831.      will be garbage-collected, and dropped from ENV's list of
  832.      observing procedures.
  833.  
  834.     environment-unobserve
  835.  
  836.  -- Scheme Procedure: environment-unobserve token
  837.      Cancel the observation request which returned the value TOKEN.
  838.      The return value is unspecified.  If a call `(environment-observe
  839.      env proc)' returns TOKEN, then the call `(environment-unobserve
  840.      token)' will cause PROC to no longer be called when ENV's bindings
  841.      change.
  842.  
  843.     make-leaf-environment
  844.  
  845.  -- Scheme Procedure: make-leaf-environment
  846.      Create a new leaf environment, containing no bindings.  All
  847.      bindings and locations created in the new environment will be
  848.      mutable.
  849.  
  850.     leaf-environment?
  851.  
  852.  -- Scheme Procedure: leaf-environment? object
  853.      Return `#t' if object is a leaf environment, or `#f' otherwise.
  854.  
  855.     make-eval-environment
  856.  
  857.  -- Scheme Procedure: make-eval-environment local imported
  858.      Return a new environment object eval whose bindings are the union
  859.      of the bindings in the environments LOCAL and IMPORTED, with
  860.      bindings from LOCAL taking precedence. Definitions made in eval
  861.      are placed in LOCAL.  Applying `environment-define' or
  862.      `environment-undefine' to eval has the same effect as applying the
  863.      procedure to LOCAL.  Note that eval incorporates LOCAL and
  864.      IMPORTED by reference: If, after creating eval, the program
  865.      changes the bindings of LOCAL or IMPORTED, those changes will be
  866.      visible in eval.  Since most Scheme evaluation takes place in eval
  867.      environments, they transparently cache the bindings received from
  868.      LOCAL and IMPORTED. Thus, the first time the program looks up a
  869.      symbol in eval, eval may make calls to LOCAL or IMPORTED to find
  870.      their bindings, but subsequent references to that symbol will be
  871.      as fast as references to bindings in finite environments.  In
  872.      typical use, LOCAL will be a finite environment, and IMPORTED will
  873.      be an import environment
  874.  
  875.     eval-environment?
  876.  
  877.  -- Scheme Procedure: eval-environment? object
  878.      Return `#t' if object is an eval environment, or `#f' otherwise.
  879.  
  880.     eval-environment-local
  881.  
  882.  -- Scheme Procedure: eval-environment-local env
  883.      Return the local environment of eval environment ENV.
  884.  
  885.     eval-environment-set-local!
  886.  
  887.  -- Scheme Procedure: eval-environment-set-local! env local
  888.      Change ENV's local environment to LOCAL.
  889.  
  890.     eval-environment-imported
  891.  
  892.  -- Scheme Procedure: eval-environment-imported env
  893.      Return the imported environment of eval environment ENV.
  894.  
  895.     eval-environment-set-imported!
  896.  
  897.  -- Scheme Procedure: eval-environment-set-imported! env imported
  898.      Change ENV's imported environment to IMPORTED.
  899.  
  900.     make-import-environment
  901.  
  902.  -- Scheme Procedure: make-import-environment imports conflict_proc
  903.      Return a new environment IMP whose bindings are the union of the
  904.      bindings from the environments in IMPORTS; IMPORTS must be a list
  905.      of environments. That is, IMP binds a symbol to a location when
  906.      some element of IMPORTS does.  If two different elements of
  907.      IMPORTS have a binding for the same symbol, the CONFLICT-PROC is
  908.      called with the following parameters:  the import environment, the
  909.      symbol and the list of the imported environments that bind the
  910.      symbol.  If the CONFLICT-PROC returns an environment ENV, the
  911.      conflict is considered as resolved and the binding from ENV is
  912.      used.  If the CONFLICT-PROC returns some non-environment object,
  913.      the conflict is considered unresolved and the symbol is treated as
  914.      unspecified in the import environment.  The checking for conflicts
  915.      may be performed lazily, i. e. at the moment when a value or
  916.      binding for a certain symbol is requested instead of the moment
  917.      when the environment is created or the bindings of the imports
  918.      change.  All bindings in IMP are immutable. If you apply
  919.      `environment-define' or `environment-undefine' to IMP, Guile will
  920.      signal an  `environment:immutable-binding' error. However, notice
  921.      that the set of bindings in IMP may still change, if one of its
  922.      imported environments changes.
  923.  
  924.     import-environment?
  925.  
  926.  -- Scheme Procedure: import-environment? object
  927.      Return `#t' if object is an import environment, or `#f' otherwise.
  928.  
  929.     import-environment-imports
  930.  
  931.  -- Scheme Procedure: import-environment-imports env
  932.      Return the list of environments imported by the import environment
  933.      ENV.
  934.  
  935.     import-environment-set-imports!
  936.  
  937.  -- Scheme Procedure: import-environment-set-imports! env imports
  938.      Change ENV's list of imported environments to IMPORTS, and check
  939.      for conflicts.
  940.  
  941.     make-export-environment
  942.  
  943.  -- Scheme Procedure: make-export-environment private signature
  944.      Return a new environment EXP containing only those bindings in
  945.      private whose symbols are present in SIGNATURE. The PRIVATE
  946.      argument must be an environment.
  947.  
  948.      The environment EXP binds symbol to location when ENV does, and
  949.      symbol is exported by SIGNATURE.
  950.  
  951.      SIGNATURE is a list specifying which of the bindings in PRIVATE
  952.      should be visible in EXP. Each element of SIGNATURE should be a
  953.      list of the form:   (symbol attribute ...)  where each attribute
  954.      is one of the following:
  955.     the symbol `mutable-location'
  956.           EXP should treat the   location bound to symbol as mutable.
  957.           That is, EXP   will pass calls to `environment-set!' or
  958.           `environment-cell' directly through to private.
  959.  
  960.     the symbol `immutable-location'
  961.           EXP should treat   the location bound to symbol as immutable.
  962.           If the program   applies `environment-set!' to EXP and
  963.           symbol, or   calls `environment-cell' to obtain a writable
  964.           value   cell, `environment-set!' will signal an
  965.           `environment:immutable-location' error. Note that, even   if
  966.           an export environment treats a location as immutable, the
  967.           underlying environment may treat it as mutable, so its
  968.           value may change.
  969.      It is an error for an element of signature to specify both
  970.      `mutable-location' and `immutable-location'. If neither is
  971.      specified, `immutable-location' is assumed.
  972.  
  973.      As a special case, if an element of signature is a lone symbol
  974.      SYM, it is equivalent to an element of the form `(sym)'.
  975.  
  976.      All bindings in EXP are immutable. If you apply
  977.      `environment-define' or `environment-undefine' to EXP, Guile will
  978.      signal an `environment:immutable-binding' error. However, notice
  979.      that the set of bindings in EXP may still change, if the bindings
  980.      in private change.
  981.  
  982.     export-environment?
  983.  
  984.  -- Scheme Procedure: export-environment? object
  985.      Return `#t' if object is an export environment, or `#f' otherwise.
  986.  
  987.     export-environment-private
  988.  
  989.  -- Scheme Procedure: export-environment-private env
  990.      Return the private environment of export environment ENV.
  991.  
  992.     export-environment-set-private!
  993.  
  994.  -- Scheme Procedure: export-environment-set-private! env private
  995.      Change the private environment of export environment ENV.
  996.  
  997.     export-environment-signature
  998.  
  999.  -- Scheme Procedure: export-environment-signature env
  1000.      Return the signature of export environment ENV.
  1001.  
  1002.     export-environment-set-signature!
  1003.  
  1004.  -- Scheme Procedure: export-environment-set-signature! env signature
  1005.      Change the signature of export environment ENV.
  1006.  
  1007.     eq?
  1008.  
  1009.  -- Scheme Procedure: eq? x y
  1010.      Return `#t' if X and Y are the same object, except for numbers and
  1011.      characters.  For example,
  1012.  
  1013.           (define x (vector 1 2 3))
  1014.           (define y (vector 1 2 3))
  1015.  
  1016.           (eq? x x)  => #t
  1017.           (eq? x y)  => #f
  1018.  
  1019.      Numbers and characters are not equal to any other object, but the
  1020.      problem is they're not necessarily `eq?' to themselves either.
  1021.      This is even so when the number comes directly from a variable,
  1022.  
  1023.           (let ((n (+ 2 3)))
  1024.             (eq? n n))       => *unspecified*
  1025.  
  1026.      Generally `eqv?' should be used when comparing numbers or
  1027.      characters.  `=' or `char=?' can be used too.
  1028.  
  1029.      It's worth noting that end-of-list `()', `#t', `#f', a symbol of a
  1030.      given name, and a keyword of a given name, are unique objects.
  1031.      There's just one of each, so for instance no matter how `()'
  1032.      arises in a program, it's the same object and can be compared with
  1033.      `eq?',
  1034.  
  1035.           (define x (cdr '(123)))
  1036.           (define y (cdr '(456)))
  1037.           (eq? x y) => #t
  1038.  
  1039.           (define x (string->symbol "foo"))
  1040.           (eq? x 'foo) => #t
  1041.  
  1042.     eqv?
  1043.  
  1044.  -- Scheme Procedure: eqv? x y
  1045.      Return `#t' if X and Y are the same object, or for characters and
  1046.      numbers the same value.
  1047.  
  1048.      On objects except characters and numbers, `eqv?' is the same as
  1049.      `eq?', it's true if X and Y are the same object.
  1050.  
  1051.      If X and Y are numbers or characters, `eqv?' compares their type
  1052.      and value.  An exact number is not `eqv?' to an inexact number
  1053.      (even if their value is the same).
  1054.  
  1055.           (eqv? 3 (+ 1 2)) => #t
  1056.           (eqv? 1 1.0)     => #f
  1057.  
  1058.     equal?
  1059.  
  1060.  -- Scheme Procedure: equal? x y
  1061.      Return `#t' if X and Y are the same type, and their contents or
  1062.      value are equal.
  1063.  
  1064.      For a pair, string, vector or array, `equal?' compares the
  1065.      contents, and does so using using the same `equal?' recursively,
  1066.      so a deep structure can be traversed.
  1067.  
  1068.           (equal? (list 1 2 3) (list 1 2 3))   => #t
  1069.           (equal? (list 1 2 3) (vector 1 2 3)) => #f
  1070.  
  1071.      For other objects, `equal?' compares as per `eqv?', which means
  1072.      characters and numbers are compared by type and value (and like
  1073.      `eqv?', exact and inexact numbers are not `equal?', even if their
  1074.      value is the same).
  1075.  
  1076.           (equal? 3 (+ 1 2)) => #t
  1077.           (equal? 1 1.0)     => #f
  1078.  
  1079.      Hash tables are currently only compared as per `eq?', so two
  1080.      different tables are not `equal?', even if their contents are the
  1081.      same.
  1082.  
  1083.      `equal?' does not support circular data structures, it may go into
  1084.      an infinite loop if asked to compare two circular lists or similar.
  1085.  
  1086.      New application-defined object types (Smobs) have an `equalp'
  1087.      handler which is called by `equal?'.  This lets an application
  1088.      traverse the contents or control what is considered `equal?' for
  1089.      two such objects.  If there's no handler, the default is to just
  1090.      compare as per `eq?'.
  1091.  
  1092.     scm-error
  1093.  
  1094.  -- Scheme Procedure: scm-error key subr message args data
  1095.      Raise an error with key KEY.  SUBR can be a string naming the
  1096.      procedure associated with the error, or `#f'.  MESSAGE is the
  1097.      error message string, possibly containing `~S' and `~A' escapes.
  1098.      When an error is reported, these are replaced by formatting the
  1099.      corresponding members of ARGS: `~A' (was `%s' in older versions of
  1100.      Guile) formats using `display' and `~S' (was `%S') formats using
  1101.      `write'.  DATA is a list or `#f' depending on KEY: if KEY is
  1102.      `system-error' then it should be a list containing the Unix
  1103.      `errno' value; If KEY is `signal' then it should be a list
  1104.      containing the Unix signal number; If KEY is `out-of-range' or
  1105.      `wrong-type-arg', it is a list containing the bad value; otherwise
  1106.      it will usually be `#f'.
  1107.  
  1108.     strerror
  1109.  
  1110.  -- Scheme Procedure: strerror err
  1111.      Return the Unix error message corresponding to ERR, which must be
  1112.      an integer value.
  1113.  
  1114.     apply:nconc2last
  1115.  
  1116.  -- Scheme Procedure: apply:nconc2last lst
  1117.      Given a list (ARG1 ... ARGS), this function conses the ARG1 ...
  1118.      arguments onto the front of ARGS, and returns the resulting list.
  1119.      Note that ARGS is a list; thus, the argument to this function is a
  1120.      list whose last element is a list.  Note: Rather than do new
  1121.      consing, `apply:nconc2last' destroys its argument, so use with
  1122.      care.
  1123.  
  1124.     force
  1125.  
  1126.  -- Scheme Procedure: force promise
  1127.      If the promise X has not been computed yet, compute and return X,
  1128.      otherwise just return the previously computed value.
  1129.  
  1130.     promise?
  1131.  
  1132.  -- Scheme Procedure: promise? obj
  1133.      Return true if OBJ is a promise, i.e. a delayed computation (*note
  1134.      Delayed evaluation: (r5rs.info)Delayed evaluation.).
  1135.  
  1136.     cons-source
  1137.  
  1138.  -- Scheme Procedure: cons-source xorig x y
  1139.      Create and return a new pair whose car and cdr are X and Y.  Any
  1140.      source properties associated with XORIG are also associated with
  1141.      the new pair.
  1142.  
  1143.     copy-tree
  1144.  
  1145.  -- Scheme Procedure: copy-tree obj
  1146.      Recursively copy the data tree that is bound to OBJ, and return a
  1147.      the new data structure.  `copy-tree' recurses down the contents of
  1148.      both pairs and vectors (since both cons cells and vector cells may
  1149.      point to arbitrary objects), and stops recursing when it hits any
  1150.      other object.
  1151.  
  1152.     primitive-eval
  1153.  
  1154.  -- Scheme Procedure: primitive-eval exp
  1155.      Evaluate EXP in the top-level environment specified by the current
  1156.      module.
  1157.  
  1158.     eval
  1159.  
  1160.  -- Scheme Procedure: eval exp module_or_state
  1161.      Evaluate EXP, a list representing a Scheme expression, in the
  1162.      top-level environment specified by MODULE_OR_STATE.  While EXP is
  1163.      evaluated (using `primitive-eval'), MODULE_OR_STATE is made the
  1164.      current module when it is a module, or the current dynamic state
  1165.      when it is a dynamic state.Example: (eval '(+ 1 2)
  1166.      (interaction-environment))
  1167.  
  1168.     eval-options-interface
  1169.  
  1170.  -- Scheme Procedure: eval-options-interface [setting]
  1171.      Option interface for the evaluation options. Instead of using this
  1172.      procedure directly, use the procedures `eval-enable',
  1173.      `eval-disable', `eval-set!' and `eval-options'.
  1174.  
  1175.     evaluator-traps-interface
  1176.  
  1177.  -- Scheme Procedure: evaluator-traps-interface [setting]
  1178.      Option interface for the evaluator trap options.
  1179.  
  1180.     defined?
  1181.  
  1182.  -- Scheme Procedure: defined? sym [env]
  1183.      Return `#t' if SYM is defined in the lexical environment ENV.
  1184.      When ENV is not specified, look in the top-level environment as
  1185.      defined by the current module.
  1186.  
  1187.     map-in-order
  1188.  
  1189.  -- Scheme Procedure: map-in-order
  1190.      implemented by the C function "scm_map"
  1191.  
  1192.     self-evaluating?
  1193.  
  1194.  -- Scheme Procedure: self-evaluating? obj
  1195.      Return #t for objects which Guile considers self-evaluating
  1196.  
  1197.     load-extension
  1198.  
  1199.  -- Scheme Procedure: load-extension lib init
  1200.      Load and initialize the extension designated by LIB and INIT.
  1201.      When there is no pre-registered function for LIB/INIT, this is
  1202.      equivalent to
  1203.  
  1204.           (dynamic-call INIT (dynamic-link LIB))
  1205.  
  1206.      When there is a pre-registered function, that function is called
  1207.      instead.
  1208.  
  1209.      Normally, there is no pre-registered function.  This option exists
  1210.      only for situations where dynamic linking is unavailable or
  1211.      unwanted.  In that case, you would statically link your program
  1212.      with the desired library, and register its init function right
  1213.      after Guile has been initialized.
  1214.  
  1215.      LIB should be a string denoting a shared library without any file
  1216.      type suffix such as ".so".  The suffix is provided automatically.
  1217.      It should also not contain any directory components.  Libraries
  1218.      that implement Guile Extensions should be put into the normal
  1219.      locations for shared libraries.  We recommend to use the naming
  1220.      convention libguile-bla-blum for a extension related to a module
  1221.      `(bla blum)'.
  1222.  
  1223.      The normal way for a extension to be used is to write a small
  1224.      Scheme file that defines a module, and to load the extension into
  1225.      this module.  When the module is auto-loaded, the extension is
  1226.      loaded as well.  For example,
  1227.  
  1228.           (define-module (bla blum))
  1229.  
  1230.           (load-extension "libguile-bla-blum" "bla_init_blum")
  1231.  
  1232.     program-arguments
  1233.  
  1234.  -- Scheme Procedure: program-arguments
  1235.  -- Scheme Procedure: command-line
  1236.      Return the list of command line arguments passed to Guile, as a
  1237.      list of strings.  The list includes the invoked program name,
  1238.      which is usually `"guile"', but excludes switches and parameters
  1239.      for command line options like `-e' and `-l'.
  1240.  
  1241.     set-program-arguments
  1242.  
  1243.  -- Scheme Procedure: set-program-arguments lst
  1244.      Set the command line arguments to be returned by
  1245.      `program-arguments' (and `command-line').  LST should be a list of
  1246.      strings, the first of which is the program name (either a script
  1247.      name, or just `"guile"').
  1248.  
  1249.      Program arguments are held in a fluid and therefore have a
  1250.      separate value in each Guile thread.  Neither the list nor the
  1251.      strings within it are copied, so should not be modified later.
  1252.  
  1253.     make-fluid
  1254.  
  1255.  -- Scheme Procedure: make-fluid
  1256.      Return a newly created fluid.  Fluids are objects that can hold one
  1257.      value per dynamic state.  That is, modifications to this value are
  1258.      only visible to code that executes with the same dynamic state as
  1259.      the modifying code.  When a new dynamic state is constructed, it
  1260.      inherits the values from its parent.  Because each thread normally
  1261.      executes with its own dynamic state, you can use fluids for thread
  1262.      local storage.
  1263.  
  1264.     fluid?
  1265.  
  1266.  -- Scheme Procedure: fluid? obj
  1267.      Return `#t' iff OBJ is a fluid; otherwise, return `#f'.
  1268.  
  1269.     fluid-ref
  1270.  
  1271.  -- Scheme Procedure: fluid-ref fluid
  1272.      Return the value associated with FLUID in the current dynamic
  1273.      root.  If FLUID has not been set, then return `#f'.
  1274.  
  1275.     fluid-set!
  1276.  
  1277.  -- Scheme Procedure: fluid-set! fluid value
  1278.      Set the value associated with FLUID in the current dynamic root.
  1279.  
  1280.     with-fluids*
  1281.  
  1282.  -- Scheme Procedure: with-fluids* fluids values thunk
  1283.      Set FLUIDS to VALUES temporary, and call THUNK.  FLUIDS must be a
  1284.      list of fluids and VALUES must be the same number of their values
  1285.      to be applied.  Each substitution is done one after another.
  1286.      THUNK must be a procedure with no argument.
  1287.  
  1288.     with-fluid*
  1289.  
  1290.  -- Scheme Procedure: with-fluid* fluid value thunk
  1291.      Set FLUID to VALUE temporarily, and call THUNK.  THUNK must be a
  1292.      procedure with no argument.
  1293.  
  1294.     make-dynamic-state
  1295.  
  1296.  -- Scheme Procedure: make-dynamic-state [parent]
  1297.      Return a copy of the dynamic state object PARENT or of the current
  1298.      dynamic state when PARENT is omitted.
  1299.  
  1300.     dynamic-state?
  1301.  
  1302.  -- Scheme Procedure: dynamic-state? obj
  1303.      Return `#t' if OBJ is a dynamic state object; return `#f' otherwise
  1304.  
  1305.     current-dynamic-state
  1306.  
  1307.  -- Scheme Procedure: current-dynamic-state
  1308.      Return the current dynamic state object.
  1309.  
  1310.     set-current-dynamic-state
  1311.  
  1312.  -- Scheme Procedure: set-current-dynamic-state state
  1313.      Set the current dynamic state object to STATE and return the
  1314.      previous current dynamic state object.
  1315.  
  1316.     with-dynamic-state
  1317.  
  1318.  -- Scheme Procedure: with-dynamic-state state proc
  1319.      Call PROC while STATE is the current dynamic state object.
  1320.  
  1321.     setvbuf
  1322.  
  1323.  -- Scheme Procedure: setvbuf port mode [size]
  1324.      Set the buffering mode for PORT.  MODE can be:
  1325.     `_IONBF'
  1326.           non-buffered
  1327.  
  1328.     `_IOLBF'
  1329.           line buffered
  1330.  
  1331.     `_IOFBF'
  1332.           block buffered, using a newly allocated buffer of SIZE bytes.
  1333.           If SIZE is omitted, a default size will be used.
  1334.  
  1335.     file-port?
  1336.  
  1337.  -- Scheme Procedure: file-port? obj
  1338.      Determine whether OBJ is a port that is related to a file.
  1339.  
  1340.     open-file
  1341.  
  1342.  -- Scheme Procedure: open-file filename mode
  1343.      Open the file whose name is FILENAME, and return a port
  1344.      representing that file.  The attributes of the port are determined
  1345.      by the MODE string.  The way in which this is interpreted is
  1346.      similar to C stdio.  The first character must be one of the
  1347.      following:
  1348.     `r'
  1349.           Open an existing file for input.
  1350.  
  1351.     `w'
  1352.           Open a file for output, creating it if it doesn't already
  1353.           exist or removing its contents if it does.
  1354.  
  1355.     `a'
  1356.           Open a file for output, creating it if it doesn't already
  1357.           exist.  All writes to the port will go to the end of the file.
  1358.           The "append mode" can be turned off while the port is in use
  1359.           *note fcntl: Ports and File Descriptors.
  1360.      The following additional characters can be appended:
  1361.     `b'
  1362.           Open the underlying file in binary mode, if supported by the
  1363.           operating system.
  1364.  
  1365.     `+'
  1366.           Open the port for both input and output.  E.g., `r+': open an
  1367.           existing file for both input and output.
  1368.  
  1369.     `0'
  1370.           Create an "unbuffered" port.  In this case input and output
  1371.           operations are passed directly to the underlying port
  1372.           implementation without additional buffering.  This is likely
  1373.           to slow down I/O operations.  The buffering mode can be
  1374.           changed while a port is in use *note setvbuf: Ports and File
  1375.           Descriptors.
  1376.  
  1377.     `l'
  1378.           Add line-buffering to the port.  The port output buffer will
  1379.           be automatically flushed whenever a newline character is
  1380.           written.
  1381.      In theory we could create read/write ports which were buffered in
  1382.      one direction only.  However this isn't included in the current
  1383.      interfaces.  If a file cannot be opened with the access requested,
  1384.      `open-file' throws an exception.
  1385.  
  1386.     gc-live-object-stats
  1387.  
  1388.  -- Scheme Procedure: gc-live-object-stats
  1389.      Return an alist of statistics of the current live objects.
  1390.  
  1391.     gc-stats
  1392.  
  1393.  -- Scheme Procedure: gc-stats
  1394.      Return an association list of statistics about Guile's current use
  1395.      of storage.
  1396.  
  1397.  
  1398.     object-address
  1399.  
  1400.  -- Scheme Procedure: object-address obj
  1401.      Return an integer that for the lifetime of OBJ is uniquely
  1402.      returned by this function for OBJ
  1403.  
  1404.     gc
  1405.  
  1406.  -- Scheme Procedure: gc
  1407.      Scans all of SCM objects and reclaims for further use those that
  1408.      are no longer accessible.
  1409.  
  1410.     class-of
  1411.  
  1412.  -- Scheme Procedure: class-of x
  1413.      Return the class of X.
  1414.  
  1415.     %compute-slots
  1416.  
  1417.  -- Scheme Procedure: %compute-slots class
  1418.      Return a list consisting of the names of all slots belonging to
  1419.      class CLASS, i. e. the slots of CLASS and of all of its
  1420.      superclasses.
  1421.  
  1422.     get-keyword
  1423.  
  1424.  -- Scheme Procedure: get-keyword key l default_value
  1425.      Determine an associated value for the keyword KEY from the list L.
  1426.      The list L has to consist of an even number of elements, where,
  1427.      starting with the first, every second element is a keyword,
  1428.      followed by its associated value.  If L does not hold a value for
  1429.      KEY, the value DEFAULT_VALUE is returned.
  1430.  
  1431.     %initialize-object
  1432.  
  1433.  -- Scheme Procedure: %initialize-object obj initargs
  1434.      Initialize the object OBJ with the given arguments INITARGS.
  1435.  
  1436.     %prep-layout!
  1437.  
  1438.  -- Scheme Procedure: %prep-layout! class
  1439.  
  1440.     %inherit-magic!
  1441.  
  1442.  -- Scheme Procedure: %inherit-magic! class dsupers
  1443.  
  1444.     instance?
  1445.  
  1446.  -- Scheme Procedure: instance? obj
  1447.      Return `#t' if OBJ is an instance.
  1448.  
  1449.     class-name
  1450.  
  1451.  -- Scheme Procedure: class-name obj
  1452.      Return the class name of OBJ.
  1453.  
  1454.     class-direct-supers
  1455.  
  1456.  -- Scheme Procedure: class-direct-supers obj
  1457.      Return the direct superclasses of the class OBJ.
  1458.  
  1459.     class-direct-slots
  1460.  
  1461.  -- Scheme Procedure: class-direct-slots obj
  1462.      Return the direct slots of the class OBJ.
  1463.  
  1464.     class-direct-subclasses
  1465.  
  1466.  -- Scheme Procedure: class-direct-subclasses obj
  1467.      Return the direct subclasses of the class OBJ.
  1468.  
  1469.     class-direct-methods
  1470.  
  1471.  -- Scheme Procedure: class-direct-methods obj
  1472.      Return the direct methods of the class OBJ
  1473.  
  1474.     class-precedence-list
  1475.  
  1476.  -- Scheme Procedure: class-precedence-list obj
  1477.      Return the class precedence list of the class OBJ.
  1478.  
  1479.     class-slots
  1480.  
  1481.  -- Scheme Procedure: class-slots obj
  1482.      Return the slot list of the class OBJ.
  1483.  
  1484.     class-environment
  1485.  
  1486.  -- Scheme Procedure: class-environment obj
  1487.      Return the environment of the class OBJ.
  1488.  
  1489.     generic-function-name
  1490.  
  1491.  -- Scheme Procedure: generic-function-name obj
  1492.      Return the name of the generic function OBJ.
  1493.  
  1494.     generic-function-methods
  1495.  
  1496.  -- Scheme Procedure: generic-function-methods obj
  1497.      Return the methods of the generic function OBJ.
  1498.  
  1499.     method-generic-function
  1500.  
  1501.  -- Scheme Procedure: method-generic-function obj
  1502.      Return the generic function for the method OBJ.
  1503.  
  1504.     method-specializers
  1505.  
  1506.  -- Scheme Procedure: method-specializers obj
  1507.      Return specializers of the method OBJ.
  1508.  
  1509.     method-procedure
  1510.  
  1511.  -- Scheme Procedure: method-procedure obj
  1512.      Return the procedure of the method OBJ.
  1513.  
  1514.     accessor-method-slot-definition
  1515.  
  1516.  -- Scheme Procedure: accessor-method-slot-definition obj
  1517.      Return the slot definition of the accessor OBJ.
  1518.  
  1519.     %tag-body
  1520.  
  1521.  -- Scheme Procedure: %tag-body body
  1522.      Internal GOOPS magic--don't use this function!
  1523.  
  1524.     make-unbound
  1525.  
  1526.  -- Scheme Procedure: make-unbound
  1527.      Return the unbound value.
  1528.  
  1529.     unbound?
  1530.  
  1531.  -- Scheme Procedure: unbound? obj
  1532.      Return `#t' if OBJ is unbound.
  1533.  
  1534.     assert-bound
  1535.  
  1536.  -- Scheme Procedure: assert-bound value obj
  1537.      Return VALUE if it is bound, and invoke the SLOT-UNBOUND method of
  1538.      OBJ if it is not.
  1539.  
  1540.     @assert-bound-ref
  1541.  
  1542.  -- Scheme Procedure: @assert-bound-ref obj index
  1543.      Like `assert-bound', but use INDEX for accessing the value from
  1544.      OBJ.
  1545.  
  1546.     %fast-slot-ref
  1547.  
  1548.  -- Scheme Procedure: %fast-slot-ref obj index
  1549.      Return the slot value with index INDEX from OBJ.
  1550.  
  1551.     %fast-slot-set!
  1552.  
  1553.  -- Scheme Procedure: %fast-slot-set! obj index value
  1554.      Set the slot with index INDEX in OBJ to VALUE.
  1555.  
  1556.     slot-ref-using-class
  1557.  
  1558.  -- Scheme Procedure: slot-ref-using-class class obj slot_name
  1559.  
  1560.     slot-set-using-class!
  1561.  
  1562.  -- Scheme Procedure: slot-set-using-class! class obj slot_name value
  1563.  
  1564.     slot-bound-using-class?
  1565.  
  1566.  -- Scheme Procedure: slot-bound-using-class? class obj slot_name
  1567.  
  1568.     slot-exists-using-class?
  1569.  
  1570.  -- Scheme Procedure: slot-exists-using-class? class obj slot_name
  1571.  
  1572.     slot-ref
  1573.  
  1574.  -- Scheme Procedure: slot-ref obj slot_name
  1575.      Return the value from OBJ's slot with the name SLOT_NAME.
  1576.  
  1577.     slot-set!
  1578.  
  1579.  -- Scheme Procedure: slot-set! obj slot_name value
  1580.      Set the slot named SLOT_NAME of OBJ to VALUE.
  1581.  
  1582.     slot-bound?
  1583.  
  1584.  -- Scheme Procedure: slot-bound? obj slot_name
  1585.      Return `#t' if the slot named SLOT_NAME of OBJ is bound.
  1586.  
  1587.     slot-exists?
  1588.  
  1589.  -- Scheme Procedure: slot-exists? obj slot_name
  1590.      Return `#t' if OBJ has a slot named SLOT_NAME.
  1591.  
  1592.     %allocate-instance
  1593.  
  1594.  -- Scheme Procedure: %allocate-instance class initargs
  1595.      Create a new instance of class CLASS and initialize it from the
  1596.      arguments INITARGS.
  1597.  
  1598.     %set-object-setter!
  1599.  
  1600.  -- Scheme Procedure: %set-object-setter! obj setter
  1601.  
  1602.     %modify-instance
  1603.  
  1604.  -- Scheme Procedure: %modify-instance old new
  1605.  
  1606.     %modify-class
  1607.  
  1608.  -- Scheme Procedure: %modify-class old new
  1609.  
  1610.     %invalidate-class
  1611.  
  1612.  -- Scheme Procedure: %invalidate-class class
  1613.  
  1614.     %invalidate-method-cache!
  1615.  
  1616.  -- Scheme Procedure: %invalidate-method-cache! gf
  1617.  
  1618.     generic-capability?
  1619.  
  1620.  -- Scheme Procedure: generic-capability? proc
  1621.  
  1622.     enable-primitive-generic!
  1623.  
  1624.  -- Scheme Procedure: enable-primitive-generic! . subrs
  1625.  
  1626.     primitive-generic-generic
  1627.  
  1628.  -- Scheme Procedure: primitive-generic-generic subr
  1629.  
  1630.     make
  1631.  
  1632.  -- Scheme Procedure: make . args
  1633.      Make a new object.  ARGS must contain the class and all necessary
  1634.      initialization information.
  1635.  
  1636.     find-method
  1637.  
  1638.  -- Scheme Procedure: find-method . l
  1639.  
  1640.     %method-more-specific?
  1641.  
  1642.  -- Scheme Procedure: %method-more-specific? m1 m2 targs
  1643.      Return true if method M1 is more specific than M2 given the
  1644.      argument types (classes) listed in TARGS.
  1645.  
  1646.     %goops-loaded
  1647.  
  1648.  -- Scheme Procedure: %goops-loaded
  1649.      Announce that GOOPS is loaded and perform initialization on the C
  1650.      level which depends on the loaded GOOPS modules.
  1651.  
  1652.     make-guardian
  1653.  
  1654.  -- Scheme Procedure: make-guardian
  1655.      Create a new guardian.  A guardian protects a set of objects from
  1656.      garbage collection, allowing a program to apply cleanup or other
  1657.      actions.
  1658.  
  1659.      `make-guardian' returns a procedure representing the guardian.
  1660.      Calling the guardian procedure with an argument adds the argument
  1661.      to the guardian's set of protected objects.  Calling the guardian
  1662.      procedure without an argument returns one of the protected objects
  1663.      which are ready for garbage collection, or `#f' if no such object
  1664.      is available.  Objects which are returned in this way are removed
  1665.      from the guardian.
  1666.  
  1667.      You can put a single object into a guardian more than once and you
  1668.      can put a single object into more than one guardian.  The object
  1669.      will then be returned multiple times by the guardian procedures.
  1670.  
  1671.      An object is eligible to be returned from a guardian when it is no
  1672.      longer referenced from outside any guardian.
  1673.  
  1674.      There is no guarantee about the order in which objects are returned
  1675.      from a guardian.  If you want to impose an order on finalization
  1676.      actions, for example, you can do that by keeping objects alive in
  1677.      some global data structure until they are no longer needed for
  1678.      finalizing other objects.
  1679.  
  1680.      Being an element in a weak vector, a key in a hash table with weak
  1681.      keys, or a value in a hash table with weak value does not prevent
  1682.      an object from being returned by a guardian.  But as long as an
  1683.      object can be returned from a guardian it will not be removed from
  1684.      such a weak vector or hash table.  In other words, a weak link
  1685.      does not prevent an object from being considered collectable, but
  1686.      being inside a guardian prevents a weak link from being broken.
  1687.  
  1688.      A key in a weak key hash table can be though of as having a strong
  1689.      reference to its associated value as long as the key is accessible.
  1690.      Consequently, when the key only accessible from within a guardian,
  1691.      the reference from the key to the value is also considered to be
  1692.      coming from within a guardian.  Thus, if there is no other
  1693.      reference to the value, it is eligible to be returned from a
  1694.      guardian.
  1695.  
  1696.  
  1697.     hashq
  1698.  
  1699.  -- Scheme Procedure: hashq key size
  1700.      Determine a hash value for KEY that is suitable for lookups in a
  1701.      hashtable of size SIZE, where `eq?' is used as the equality
  1702.      predicate.  The function returns an integer in the range 0 to SIZE
  1703.      - 1.  Note that `hashq' may use internal addresses.  Thus two
  1704.      calls to hashq where the keys are `eq?' are not guaranteed to
  1705.      deliver the same value if the key object gets garbage collected in
  1706.      between.  This can happen, for example with symbols: `(hashq 'foo
  1707.      n) (gc) (hashq 'foo n)' may produce two different values, since
  1708.      `foo' will be garbage collected.
  1709.  
  1710.     hashv
  1711.  
  1712.  -- Scheme Procedure: hashv key size
  1713.      Determine a hash value for KEY that is suitable for lookups in a
  1714.      hashtable of size SIZE, where `eqv?' is used as the equality
  1715.      predicate.  The function returns an integer in the range 0 to SIZE
  1716.      - 1.  Note that `(hashv key)' may use internal addresses.  Thus
  1717.      two calls to hashv where the keys are `eqv?' are not guaranteed to
  1718.      deliver the same value if the key object gets garbage collected in
  1719.      between.  This can happen, for example with symbols: `(hashv 'foo
  1720.      n) (gc) (hashv 'foo n)' may produce two different values, since
  1721.      `foo' will be garbage collected.
  1722.  
  1723.     hash
  1724.  
  1725.  -- Scheme Procedure: hash key size
  1726.      Determine a hash value for KEY that is suitable for lookups in a
  1727.      hashtable of size SIZE, where `equal?' is used as the equality
  1728.      predicate.  The function returns an integer in the range 0 to SIZE
  1729.      - 1.
  1730.  
  1731.     make-hash-table
  1732.  
  1733.  -- Scheme Procedure: make-hash-table [n]
  1734.      Make a new abstract hash table object with minimum number of
  1735.      buckets N
  1736.  
  1737.  
  1738.     make-weak-key-hash-table
  1739.  
  1740.  -- Scheme Procedure: make-weak-key-hash-table [n]
  1741.  -- Scheme Procedure: make-weak-value-hash-table size
  1742.  -- Scheme Procedure: make-doubly-weak-hash-table size
  1743.      Return a weak hash table with SIZE buckets.
  1744.  
  1745.      You can modify weak hash tables in exactly the same way you would
  1746.      modify regular hash tables. (*note Hash Tables::)
  1747.  
  1748.     make-weak-value-hash-table
  1749.  
  1750.  -- Scheme Procedure: make-weak-value-hash-table [n]
  1751.      Return a hash table with weak values with SIZE buckets.  (*note
  1752.      Hash Tables::)
  1753.  
  1754.     make-doubly-weak-hash-table
  1755.  
  1756.  -- Scheme Procedure: make-doubly-weak-hash-table n
  1757.      Return a hash table with weak keys and values with SIZE buckets.
  1758.      (*note Hash Tables::)
  1759.  
  1760.     hash-table?
  1761.  
  1762.  -- Scheme Procedure: hash-table? obj
  1763.      Return `#t' if OBJ is an abstract hash table object.
  1764.  
  1765.     weak-key-hash-table?
  1766.  
  1767.  -- Scheme Procedure: weak-key-hash-table? obj
  1768.  -- Scheme Procedure: weak-value-hash-table? obj
  1769.  -- Scheme Procedure: doubly-weak-hash-table? obj
  1770.      Return `#t' if OBJ is the specified weak hash table. Note that a
  1771.      doubly weak hash table is neither a weak key nor a weak value hash
  1772.      table.
  1773.  
  1774.     weak-value-hash-table?
  1775.  
  1776.  -- Scheme Procedure: weak-value-hash-table? obj
  1777.      Return `#t' if OBJ is a weak value hash table.
  1778.  
  1779.     doubly-weak-hash-table?
  1780.  
  1781.  -- Scheme Procedure: doubly-weak-hash-table? obj
  1782.      Return `#t' if OBJ is a doubly weak hash table.
  1783.  
  1784.     hash-clear!
  1785.  
  1786.  -- Scheme Procedure: hash-clear! table
  1787.      Remove all items from TABLE (without triggering a resize).
  1788.  
  1789.     hashq-get-handle
  1790.  
  1791.  -- Scheme Procedure: hashq-get-handle table key
  1792.      This procedure returns the `(key . value)' pair from the hash
  1793.      table TABLE.  If TABLE does not hold an associated value for KEY,
  1794.      `#f' is returned.  Uses `eq?' for equality testing.
  1795.  
  1796.     hashq-create-handle!
  1797.  
  1798.  -- Scheme Procedure: hashq-create-handle! table key init
  1799.      This function looks up KEY in TABLE and returns its handle.  If
  1800.      KEY is not already present, a new handle is created which
  1801.      associates KEY with INIT.
  1802.  
  1803.     hashq-ref
  1804.  
  1805.  -- Scheme Procedure: hashq-ref table key [dflt]
  1806.      Look up KEY in the hash table TABLE, and return the value (if any)
  1807.      associated with it.  If KEY is not found, return DEFAULT (or `#f'
  1808.      if no DEFAULT argument is supplied).  Uses `eq?' for equality
  1809.      testing.
  1810.  
  1811.     hashq-set!
  1812.  
  1813.  -- Scheme Procedure: hashq-set! table key val
  1814.      Find the entry in TABLE associated with KEY, and store VALUE
  1815.      there. Uses `eq?' for equality testing.
  1816.  
  1817.     hashq-remove!
  1818.  
  1819.  -- Scheme Procedure: hashq-remove! table key
  1820.      Remove KEY (and any value associated with it) from TABLE.  Uses
  1821.      `eq?' for equality tests.
  1822.  
  1823.     hashv-get-handle
  1824.  
  1825.  -- Scheme Procedure: hashv-get-handle table key
  1826.      This procedure returns the `(key . value)' pair from the hash
  1827.      table TABLE.  If TABLE does not hold an associated value for KEY,
  1828.      `#f' is returned.  Uses `eqv?' for equality testing.
  1829.  
  1830.     hashv-create-handle!
  1831.  
  1832.  -- Scheme Procedure: hashv-create-handle! table key init
  1833.      This function looks up KEY in TABLE and returns its handle.  If
  1834.      KEY is not already present, a new handle is created which
  1835.      associates KEY with INIT.
  1836.  
  1837.     hashv-ref
  1838.  
  1839.  -- Scheme Procedure: hashv-ref table key [dflt]
  1840.      Look up KEY in the hash table TABLE, and return the value (if any)
  1841.      associated with it.  If KEY is not found, return DEFAULT (or `#f'
  1842.      if no DEFAULT argument is supplied).  Uses `eqv?' for equality
  1843.      testing.
  1844.  
  1845.     hashv-set!
  1846.  
  1847.  -- Scheme Procedure: hashv-set! table key val
  1848.      Find the entry in TABLE associated with KEY, and store VALUE
  1849.      there. Uses `eqv?' for equality testing.
  1850.  
  1851.     hashv-remove!
  1852.  
  1853.  -- Scheme Procedure: hashv-remove! table key
  1854.      Remove KEY (and any value associated with it) from TABLE.  Uses
  1855.      `eqv?' for equality tests.
  1856.  
  1857.     hash-get-handle
  1858.  
  1859.  -- Scheme Procedure: hash-get-handle table key
  1860.      This procedure returns the `(key . value)' pair from the hash
  1861.      table TABLE.  If TABLE does not hold an associated value for KEY,
  1862.      `#f' is returned.  Uses `equal?' for equality testing.
  1863.  
  1864.     hash-create-handle!
  1865.  
  1866.  -- Scheme Procedure: hash-create-handle! table key init
  1867.      This function looks up KEY in TABLE and returns its handle.  If
  1868.      KEY is not already present, a new handle is created which
  1869.      associates KEY with INIT.
  1870.  
  1871.     hash-ref
  1872.  
  1873.  -- Scheme Procedure: hash-ref table key [dflt]
  1874.      Look up KEY in the hash table TABLE, and return the value (if any)
  1875.      associated with it.  If KEY is not found, return DEFAULT (or `#f'
  1876.      if no DEFAULT argument is supplied).  Uses `equal?' for equality
  1877.      testing.
  1878.  
  1879.     hash-set!
  1880.  
  1881.  -- Scheme Procedure: hash-set! table key val
  1882.      Find the entry in TABLE associated with KEY, and store VALUE
  1883.      there. Uses `equal?' for equality testing.
  1884.  
  1885.     hash-remove!
  1886.  
  1887.  -- Scheme Procedure: hash-remove! table key
  1888.      Remove KEY (and any value associated with it) from TABLE.  Uses
  1889.      `equal?' for equality tests.
  1890.  
  1891.     hashx-get-handle
  1892.  
  1893.  -- Scheme Procedure: hashx-get-handle hash assoc table key
  1894.      This behaves the same way as the corresponding `-get-handle'
  1895.      function, but uses HASH as a hash function and ASSOC to compare
  1896.      keys.  `hash' must be a function that takes two arguments, a key
  1897.      to be hashed and a table size.  `assoc' must be an associator
  1898.      function, like `assoc', `assq' or `assv'.
  1899.  
  1900.     hashx-create-handle!
  1901.  
  1902.  -- Scheme Procedure: hashx-create-handle! hash assoc table key init
  1903.      This behaves the same way as the corresponding `-create-handle'
  1904.      function, but uses HASH as a hash function and ASSOC to compare
  1905.      keys.  `hash' must be a function that takes two arguments, a key
  1906.      to be hashed and a table size.  `assoc' must be an associator
  1907.      function, like `assoc', `assq' or `assv'.
  1908.  
  1909.     hashx-ref
  1910.  
  1911.  -- Scheme Procedure: hashx-ref hash assoc table key [dflt]
  1912.      This behaves the same way as the corresponding `ref' function, but
  1913.      uses HASH as a hash function and ASSOC to compare keys.  `hash'
  1914.      must be a function that takes two arguments, a key to be hashed
  1915.      and a table size.  `assoc' must be an associator function, like
  1916.      `assoc', `assq' or `assv'.
  1917.  
  1918.      By way of illustration, `hashq-ref table key' is equivalent to
  1919.      `hashx-ref hashq assq table key'.
  1920.  
  1921.     hashx-set!
  1922.  
  1923.  -- Scheme Procedure: hashx-set! hash assoc table key val
  1924.      This behaves the same way as the corresponding `set!' function,
  1925.      but uses HASH as a hash function and ASSOC to compare keys.
  1926.      `hash' must be a function that takes two arguments, a key to be
  1927.      hashed and a table size.  `assoc' must be an associator function,
  1928.      like `assoc', `assq' or `assv'.
  1929.  
  1930.      By way of illustration, `hashq-set! table key' is equivalent to
  1931.      `hashx-set!  hashq assq table key'.
  1932.  
  1933.     hashx-remove!
  1934.  
  1935.  -- Scheme Procedure: hashx-remove! hash assoc table obj
  1936.      This behaves the same way as the corresponding `remove!' function,
  1937.      but uses HASH as a hash function and ASSOC to compare keys.
  1938.      `hash' must be a function that takes two arguments, a key to be
  1939.      hashed and a table size.  `assoc' must be an associator function,
  1940.      like `assoc', `assq' or `assv'.
  1941.  
  1942.      By way of illustration, `hashq-remove! table key' is equivalent to
  1943.      `hashx-remove!  hashq assq #f table key'.
  1944.  
  1945.     hash-fold
  1946.  
  1947.  -- Scheme Procedure: hash-fold proc init table
  1948.      An iterator over hash-table elements.  Accumulates and returns a
  1949.      result by applying PROC successively.  The arguments to PROC are
  1950.      "(key value prior-result)" where key and value are successive
  1951.      pairs from the hash table TABLE, and prior-result is either INIT
  1952.      (for the first application of PROC) or the return value of the
  1953.      previous application of PROC.  For example, `(hash-fold acons '()
  1954.      tab)' will convert a hash table into an a-list of key-value pairs.
  1955.  
  1956.     hash-for-each
  1957.  
  1958.  -- Scheme Procedure: hash-for-each proc table
  1959.      An iterator over hash-table elements.  Applies PROC successively
  1960.      on all hash table items.  The arguments to PROC are "(key value)"
  1961.      where key and value are successive pairs from the hash table TABLE.
  1962.  
  1963.     hash-for-each-handle
  1964.  
  1965.  -- Scheme Procedure: hash-for-each-handle proc table
  1966.      An iterator over hash-table elements.  Applies PROC successively
  1967.      on all hash table handles.
  1968.  
  1969.     hash-map->list
  1970.  
  1971.  -- Scheme Procedure: hash-map->list proc table
  1972.      An iterator over hash-table elements.  Accumulates and returns as
  1973.      a list the results of applying PROC successively.  The arguments
  1974.      to PROC are "(key value)" where key and value are successive pairs
  1975.      from the hash table TABLE.
  1976.  
  1977.     make-hook
  1978.  
  1979.  -- Scheme Procedure: make-hook [n_args]
  1980.      Create a hook for storing procedure of arity N_ARGS.  N_ARGS
  1981.      defaults to zero.  The returned value is a hook object to be used
  1982.      with the other hook procedures.
  1983.  
  1984.     hook?
  1985.  
  1986.  -- Scheme Procedure: hook? x
  1987.      Return `#t' if X is a hook, `#f' otherwise.
  1988.  
  1989.     hook-empty?
  1990.  
  1991.  -- Scheme Procedure: hook-empty? hook
  1992.      Return `#t' if HOOK is an empty hook, `#f' otherwise.
  1993.  
  1994.     add-hook!
  1995.  
  1996.  -- Scheme Procedure: add-hook! hook proc [append_p]
  1997.      Add the procedure PROC to the hook HOOK. The procedure is added to
  1998.      the end if APPEND_P is true, otherwise it is added to the front.
  1999.      The return value of this procedure is not specified.
  2000.  
  2001.     remove-hook!
  2002.  
  2003.  -- Scheme Procedure: remove-hook! hook proc
  2004.      Remove the procedure PROC from the hook HOOK.  The return value of
  2005.      this procedure is not specified.
  2006.  
  2007.     reset-hook!
  2008.  
  2009.  -- Scheme Procedure: reset-hook! hook
  2010.      Remove all procedures from the hook HOOK.  The return value of
  2011.      this procedure is not specified.
  2012.  
  2013.     run-hook
  2014.  
  2015.  -- Scheme Procedure: run-hook hook . args
  2016.      Apply all procedures from the hook HOOK to the arguments ARGS.
  2017.      The order of the procedure application is first to last.  The
  2018.      return value of this procedure is not specified.
  2019.  
  2020.     hook->list
  2021.  
  2022.  -- Scheme Procedure: hook->list hook
  2023.      Convert the procedure list of HOOK to a list.
  2024.  
  2025.     gettext
  2026.  
  2027.  -- Scheme Procedure: gettext msgid [domain [category]]
  2028.      Return the translation of MSGID in the message domain DOMAIN.
  2029.      DOMAIN is optional and defaults to the domain set through
  2030.      (textdomain).  CATEGORY is optional and defaults to LC_MESSAGES.
  2031.  
  2032.     ngettext
  2033.  
  2034.  -- Scheme Procedure: ngettext msgid msgid_plural n [domain [category]]
  2035.      Return the translation of MSGID/MSGID_PLURAL in the message domain
  2036.      DOMAIN, with the plural form being chosen appropriately for the
  2037.      number N.  DOMAIN is optional and defaults to the domain set
  2038.      through (textdomain). CATEGORY is optional and defaults to
  2039.      LC_MESSAGES.
  2040.  
  2041.     textdomain
  2042.  
  2043.  -- Scheme Procedure: textdomain [domainname]
  2044.      If optional parameter DOMAINNAME is supplied, set the textdomain.
  2045.      Return the textdomain.
  2046.  
  2047.     bindtextdomain
  2048.  
  2049.  -- Scheme Procedure: bindtextdomain domainname [directory]
  2050.      If optional parameter DIRECTORY is supplied, set message catalogs
  2051.      to directory DIRECTORY.  Return the directory bound to DOMAINNAME.
  2052.  
  2053.     bind-textdomain-codeset
  2054.  
  2055.  -- Scheme Procedure: bind-textdomain-codeset domainname [encoding]
  2056.      If optional parameter ENCODING is supplied, set encoding for
  2057.      message catalogs of DOMAINNAME.  Return the encoding of DOMAINNAME.
  2058.  
  2059.     ftell
  2060.  
  2061.  -- Scheme Procedure: ftell fd_port
  2062.      Return an integer representing the current position of FD/PORT,
  2063.      measured from the beginning.  Equivalent to:
  2064.  
  2065.           (seek port 0 SEEK_CUR)
  2066.  
  2067.     redirect-port
  2068.  
  2069.  -- Scheme Procedure: redirect-port old new
  2070.      This procedure takes two ports and duplicates the underlying file
  2071.      descriptor from OLD-PORT into NEW-PORT.  The current file
  2072.      descriptor in NEW-PORT will be closed.  After the redirection the
  2073.      two ports will share a file position and file status flags.
  2074.  
  2075.      The return value is unspecified.
  2076.  
  2077.      Unexpected behaviour can result if both ports are subsequently used
  2078.      and the original and/or duplicate ports are buffered.
  2079.  
  2080.      This procedure does not have any side effects on other ports or
  2081.      revealed counts.
  2082.  
  2083.     dup->fdes
  2084.  
  2085.  -- Scheme Procedure: dup->fdes fd_or_port [fd]
  2086.      Return a new integer file descriptor referring to the open file
  2087.      designated by FD_OR_PORT, which must be either an open file port
  2088.      or a file descriptor.
  2089.  
  2090.     dup2
  2091.  
  2092.  -- Scheme Procedure: dup2 oldfd newfd
  2093.      A simple wrapper for the `dup2' system call.  Copies the file
  2094.      descriptor OLDFD to descriptor number NEWFD, replacing the
  2095.      previous meaning of NEWFD.  Both OLDFD and NEWFD must be integers.
  2096.      Unlike for dup->fdes or primitive-move->fdes, no attempt is made
  2097.      to move away ports which are using NEWFD.  The return value is
  2098.      unspecified.
  2099.  
  2100.     fileno
  2101.  
  2102.  -- Scheme Procedure: fileno port
  2103.      Return the integer file descriptor underlying PORT.  Does not
  2104.      change its revealed count.
  2105.  
  2106.     isatty?
  2107.  
  2108.  -- Scheme Procedure: isatty? port
  2109.      Return `#t' if PORT is using a serial non-file device, otherwise
  2110.      `#f'.
  2111.  
  2112.     fdopen
  2113.  
  2114.  -- Scheme Procedure: fdopen fdes modes
  2115.      Return a new port based on the file descriptor FDES.  Modes are
  2116.      given by the string MODES.  The revealed count of the port is
  2117.      initialized to zero.  The modes string is the same as that
  2118.      accepted by *note open-file: File Ports.
  2119.  
  2120.     primitive-move->fdes
  2121.  
  2122.  -- Scheme Procedure: primitive-move->fdes port fd
  2123.      Moves the underlying file descriptor for PORT to the integer value
  2124.      FDES without changing the revealed count of PORT.  Any other ports
  2125.      already using this descriptor will be automatically shifted to new
  2126.      descriptors and their revealed counts reset to zero.  The return
  2127.      value is `#f' if the file descriptor already had the required
  2128.      value or `#t' if it was moved.
  2129.  
  2130.     fdes->ports
  2131.  
  2132.  -- Scheme Procedure: fdes->ports fd
  2133.      Return a list of existing ports which have FDES as an underlying
  2134.      file descriptor, without changing their revealed counts.
  2135.  
  2136.     keyword?
  2137.  
  2138.  -- Scheme Procedure: keyword? obj
  2139.      Return `#t' if the argument OBJ is a keyword, else `#f'.
  2140.  
  2141.     symbol->keyword
  2142.  
  2143.  -- Scheme Procedure: symbol->keyword symbol
  2144.      Return the keyword with the same name as SYMBOL.
  2145.  
  2146.     keyword->symbol
  2147.  
  2148.  -- Scheme Procedure: keyword->symbol keyword
  2149.      Return the symbol with the same name as KEYWORD.
  2150.  
  2151.     make-list
  2152.  
  2153.  -- Scheme Procedure: make-list n [init]
  2154.      Create a list containing of N elements, where each element is
  2155.      initialized to INIT.  INIT defaults to the empty list `()' if not
  2156.      given.
  2157.  
  2158.     cons*
  2159.  
  2160.  -- Scheme Procedure: cons* arg . rest
  2161.      Like `list', but the last arg provides the tail of the constructed
  2162.      list, returning `(cons ARG1 (cons ARG2 (cons ... ARGN)))'.
  2163.      Requires at least one argument.  If given one argument, that
  2164.      argument is returned as result.  This function is called `list*'
  2165.      in some other Schemes and in Common LISP.
  2166.  
  2167.     null?
  2168.  
  2169.  -- Scheme Procedure: null? x
  2170.      Return `#t' iff X is the empty list, else `#f'.
  2171.  
  2172.     list?
  2173.  
  2174.  -- Scheme Procedure: list? x
  2175.      Return `#t' iff X is a proper list, else `#f'.
  2176.  
  2177.     length
  2178.  
  2179.  -- Scheme Procedure: length lst
  2180.      Return the number of elements in list LST.
  2181.  
  2182.     append
  2183.  
  2184.  -- Scheme Procedure: append . args
  2185.      Return a list consisting of the elements the lists passed as
  2186.      arguments.
  2187.           (append '(x) '(y))          =>  (x y)
  2188.           (append '(a) '(b c d))      =>  (a b c d)
  2189.           (append '(a (b)) '((c)))    =>  (a (b) (c))
  2190.      The resulting list is always newly allocated, except that it
  2191.      shares structure with the last list argument.  The last argument
  2192.      may actually be any object; an improper list results if the last
  2193.      argument is not a proper list.
  2194.           (append '(a b) '(c . d))    =>  (a b c . d)
  2195.           (append '() 'a)             =>  a
  2196.  
  2197.     append!
  2198.  
  2199.  -- Scheme Procedure: append! . lists
  2200.      A destructive version of `append' (*note Pairs and Lists:
  2201.      (r5rs)Pairs and Lists.).  The cdr field of each list's final pair
  2202.      is changed to point to the head of the next list, so no consing is
  2203.      performed.  Return the mutated list.
  2204.  
  2205.     last-pair
  2206.  
  2207.  -- Scheme Procedure: last-pair lst
  2208.      Return the last pair in LST, signalling an error if LST is
  2209.      circular.
  2210.  
  2211.     reverse
  2212.  
  2213.  -- Scheme Procedure: reverse lst
  2214.      Return a new list that contains the elements of LST but in reverse
  2215.      order.
  2216.  
  2217.     reverse!
  2218.  
  2219.  -- Scheme Procedure: reverse! lst [new_tail]
  2220.      A destructive version of `reverse' (*note Pairs and Lists:
  2221.      (r5rs)Pairs and Lists.).  The cdr of each cell in LST is modified
  2222.      to point to the previous list element.  Return the reversed list.
  2223.  
  2224.      Caveat: because the list is modified in place, the tail of the
  2225.      original list now becomes its head, and the head of the original
  2226.      list now becomes the tail.  Therefore, the LST symbol to which the
  2227.      head of the original list was bound now points to the tail.  To
  2228.      ensure that the head of the modified list is not lost, it is wise
  2229.      to save the return value of `reverse!'
  2230.  
  2231.     list-ref
  2232.  
  2233.  -- Scheme Procedure: list-ref list k
  2234.      Return the Kth element from LIST.
  2235.  
  2236.     list-set!
  2237.  
  2238.  -- Scheme Procedure: list-set! list k val
  2239.      Set the Kth element of LIST to VAL.
  2240.  
  2241.     list-cdr-ref
  2242.  
  2243.  -- Scheme Procedure: list-cdr-ref
  2244.      implemented by the C function "scm_list_tail"
  2245.  
  2246.     list-tail
  2247.  
  2248.  -- Scheme Procedure: list-tail lst k
  2249.  -- Scheme Procedure: list-cdr-ref lst k
  2250.      Return the "tail" of LST beginning with its Kth element.  The
  2251.      first element of the list is considered to be element 0.
  2252.  
  2253.      `list-tail' and `list-cdr-ref' are identical.  It may help to
  2254.      think of `list-cdr-ref' as accessing the Kth cdr of the list, or
  2255.      returning the results of cdring K times down LST.
  2256.  
  2257.     list-cdr-set!
  2258.  
  2259.  -- Scheme Procedure: list-cdr-set! list k val
  2260.      Set the Kth cdr of LIST to VAL.
  2261.  
  2262.     list-head
  2263.  
  2264.  -- Scheme Procedure: list-head lst k
  2265.      Copy the first K elements from LST into a new list, and return it.
  2266.  
  2267.     list-copy
  2268.  
  2269.  -- Scheme Procedure: list-copy lst
  2270.      Return a (newly-created) copy of LST.
  2271.  
  2272.     list
  2273.  
  2274.  -- Scheme Procedure: list . objs
  2275.      Return a list containing OBJS, the arguments to `list'.
  2276.  
  2277.     memq
  2278.  
  2279.  -- Scheme Procedure: memq x lst
  2280.      Return the first sublist of LST whose car is `eq?' to X where the
  2281.      sublists of LST are the non-empty lists returned by `(list-tail
  2282.      LST K)' for K less than the length of LST.  If X does not occur in
  2283.      LST, then `#f' (not the empty list) is returned.
  2284.  
  2285.     memv
  2286.  
  2287.  -- Scheme Procedure: memv x lst
  2288.      Return the first sublist of LST whose car is `eqv?' to X where the
  2289.      sublists of LST are the non-empty lists returned by `(list-tail
  2290.      LST K)' for K less than the length of LST.  If X does not occur in
  2291.      LST, then `#f' (not the empty list) is returned.
  2292.  
  2293.     member
  2294.  
  2295.  -- Scheme Procedure: member x lst
  2296.      Return the first sublist of LST whose car is `equal?' to X where
  2297.      the sublists of LST are the non-empty lists returned by
  2298.      `(list-tail LST K)' for K less than the length of LST.  If X does
  2299.      not occur in LST, then `#f' (not the empty list) is returned.
  2300.  
  2301.     delq!
  2302.  
  2303.  -- Scheme Procedure: delq! item lst
  2304.  -- Scheme Procedure: delv! item lst
  2305.  -- Scheme Procedure: delete! item lst
  2306.      These procedures are destructive versions of `delq', `delv' and
  2307.      `delete': they modify the existing LST rather than creating a new
  2308.      list.  Caveat evaluator: Like other destructive list functions,
  2309.      these functions cannot modify the binding of LST, and so cannot be
  2310.      used to delete the first element of LST destructively.
  2311.  
  2312.     delv!
  2313.  
  2314.  -- Scheme Procedure: delv! item lst
  2315.      Destructively remove all elements from LST that are `eqv?' to ITEM.
  2316.  
  2317.     delete!
  2318.  
  2319.  -- Scheme Procedure: delete! item lst
  2320.      Destructively remove all elements from LST that are `equal?' to
  2321.      ITEM.
  2322.  
  2323.     delq
  2324.  
  2325.  -- Scheme Procedure: delq item lst
  2326.      Return a newly-created copy of LST with elements `eq?' to ITEM
  2327.      removed.  This procedure mirrors `memq': `delq' compares elements
  2328.      of LST against ITEM with `eq?'.
  2329.  
  2330.     delv
  2331.  
  2332.  -- Scheme Procedure: delv item lst
  2333.      Return a newly-created copy of LST with elements `eqv?'  to ITEM
  2334.      removed.  This procedure mirrors `memv': `delv' compares elements
  2335.      of LST against ITEM with `eqv?'.
  2336.  
  2337.     delete
  2338.  
  2339.  -- Scheme Procedure: delete item lst
  2340.      Return a newly-created copy of LST with elements `equal?'  to ITEM
  2341.      removed.  This procedure mirrors `member': `delete' compares
  2342.      elements of LST against ITEM with `equal?'.
  2343.  
  2344.     delq1!
  2345.  
  2346.  -- Scheme Procedure: delq1! item lst
  2347.      Like `delq!', but only deletes the first occurrence of ITEM from
  2348.      LST.  Tests for equality using `eq?'.  See also `delv1!' and
  2349.      `delete1!'.
  2350.  
  2351.     delv1!
  2352.  
  2353.  -- Scheme Procedure: delv1! item lst
  2354.      Like `delv!', but only deletes the first occurrence of ITEM from
  2355.      LST.  Tests for equality using `eqv?'.  See also `delq1!' and
  2356.      `delete1!'.
  2357.  
  2358.     delete1!
  2359.  
  2360.  -- Scheme Procedure: delete1! item lst
  2361.      Like `delete!', but only deletes the first occurrence of ITEM from
  2362.      LST.  Tests for equality using `equal?'.  See also `delq1!' and
  2363.      `delv1!'.
  2364.  
  2365.     filter
  2366.  
  2367.  -- Scheme Procedure: filter pred list
  2368.      Return all the elements of 2nd arg LIST that satisfy predicate
  2369.      PRED.  The list is not disordered - elements that appear in the
  2370.      result list occur in the same order as they occur in the argument
  2371.      list. The returned list may share a common tail with the argument
  2372.      list. The dynamic order in which the various applications of pred
  2373.      are made is not specified.
  2374.  
  2375.           (filter even? '(0 7 8 8 43 -4)) => (0 8 8 -4)
  2376.  
  2377.     filter!
  2378.  
  2379.  -- Scheme Procedure: filter! pred list
  2380.      Linear-update variant of `filter'.
  2381.  
  2382.     primitive-load
  2383.  
  2384.  -- Scheme Procedure: primitive-load filename
  2385.      Load the file named FILENAME and evaluate its contents in the
  2386.      top-level environment. The load paths are not searched; FILENAME
  2387.      must either be a full pathname or be a pathname relative to the
  2388.      current directory.  If the  variable `%load-hook' is defined, it
  2389.      should be bound to a procedure that will be called before any code
  2390.      is loaded.  See the documentation for `%load-hook' later in this
  2391.      section.
  2392.  
  2393.     %package-data-dir
  2394.  
  2395.  -- Scheme Procedure: %package-data-dir
  2396.      Return the name of the directory where Scheme packages, modules and
  2397.      libraries are kept.  On most Unix systems, this will be
  2398.      `/usr/local/share/guile'.
  2399.  
  2400.     %library-dir
  2401.  
  2402.  -- Scheme Procedure: %library-dir
  2403.      Return the directory where the Guile Scheme library files are
  2404.      installed.  E.g., may return "/usr/share/guile/1.3.5".
  2405.  
  2406.     %site-dir
  2407.  
  2408.  -- Scheme Procedure: %site-dir
  2409.      Return the directory where the Guile site files are installed.
  2410.      E.g., may return "/usr/share/guile/site".
  2411.  
  2412.     parse-path
  2413.  
  2414.  -- Scheme Procedure: parse-path path [tail]
  2415.      Parse PATH, which is expected to be a colon-separated string, into
  2416.      a list and return the resulting list with TAIL appended. If PATH
  2417.      is `#f', TAIL is returned.
  2418.  
  2419.     search-path
  2420.  
  2421.  -- Scheme Procedure: search-path path filename [extensions]
  2422.      Search PATH for a directory containing a file named FILENAME. The
  2423.      file must be readable, and not a directory.  If we find one,
  2424.      return its full filename; otherwise, return `#f'.  If FILENAME is
  2425.      absolute, return it unchanged.  If given, EXTENSIONS is a list of
  2426.      strings; for each directory in PATH, we search for FILENAME
  2427.      concatenated with each EXTENSION.
  2428.  
  2429.     %search-load-path
  2430.  
  2431.  -- Scheme Procedure: %search-load-path filename
  2432.      Search %LOAD-PATH for the file named FILENAME, which must be
  2433.      readable by the current user.  If FILENAME is found in the list of
  2434.      paths to search or is an absolute pathname, return its full
  2435.      pathname.  Otherwise, return `#f'.  Filenames may have any of the
  2436.      optional extensions in the `%load-extensions' list;
  2437.      `%search-load-path' will try each extension automatically.
  2438.  
  2439.     primitive-load-path
  2440.  
  2441.  -- Scheme Procedure: primitive-load-path filename
  2442.      Search %LOAD-PATH for the file named FILENAME and load it into the
  2443.      top-level environment.  If FILENAME is a relative pathname and is
  2444.      not found in the list of search paths, an error is signalled.
  2445.  
  2446.     procedure->memoizing-macro
  2447.  
  2448.  -- Scheme Procedure: procedure->memoizing-macro code
  2449.      Return a "macro" which, when a symbol defined to this value
  2450.      appears as the first symbol in an expression, evaluates the result
  2451.      of applying CODE to the expression and the environment.
  2452.  
  2453.      `procedure->memoizing-macro' is the same as `procedure->macro',
  2454.      except that the expression returned by CODE replaces the original
  2455.      macro expression in the memoized form of the containing code.
  2456.  
  2457.     procedure->syntax
  2458.  
  2459.  -- Scheme Procedure: procedure->syntax code
  2460.      Return a "macro" which, when a symbol defined to this value
  2461.      appears as the first symbol in an expression, returns the result
  2462.      of applying CODE to the expression and the environment.
  2463.  
  2464.     procedure->macro
  2465.  
  2466.  -- Scheme Procedure: procedure->macro code
  2467.      Return a "macro" which, when a symbol defined to this value
  2468.      appears as the first symbol in an expression, evaluates the result
  2469.      of applying CODE to the expression and the environment.  For
  2470.      example:
  2471.  
  2472.           (define trace
  2473.             (procedure->macro
  2474.              (lambda (x env) `(set! ,(cadr x) (tracef ,(cadr x) ',(cadr x))))))
  2475.  
  2476.           (trace foo) == (set! foo (tracef foo 'foo)).
  2477.  
  2478.     macro?
  2479.  
  2480.  -- Scheme Procedure: macro? obj
  2481.      Return `#t' if OBJ is a regular macro, a memoizing macro or a
  2482.      syntax transformer.
  2483.  
  2484.     macro-type
  2485.  
  2486.  -- Scheme Procedure: macro-type m
  2487.      Return one of the symbols `syntax', `macro' or `macro!', depending
  2488.      on whether M is a syntax transformer, a regular macro, or a
  2489.      memoizing macro, respectively.  If M is not a macro, `#f' is
  2490.      returned.
  2491.  
  2492.     macro-name
  2493.  
  2494.  -- Scheme Procedure: macro-name m
  2495.      Return the name of the macro M.
  2496.  
  2497.     macro-transformer
  2498.  
  2499.  -- Scheme Procedure: macro-transformer m
  2500.      Return the transformer of the macro M.
  2501.  
  2502.     current-module
  2503.  
  2504.  -- Scheme Procedure: current-module
  2505.      Return the current module.
  2506.  
  2507.     set-current-module
  2508.  
  2509.  -- Scheme Procedure: set-current-module module
  2510.      Set the current module to MODULE and return the previous current
  2511.      module.
  2512.  
  2513.     interaction-environment
  2514.  
  2515.  -- Scheme Procedure: interaction-environment
  2516.      Return a specifier for the environment that contains
  2517.      implementation-defined bindings, typically a superset of those
  2518.      listed in the report.  The intent is that this procedure will
  2519.      return the environment in which the implementation would evaluate
  2520.      expressions dynamically typed by the user.
  2521.  
  2522.     env-module
  2523.  
  2524.  -- Scheme Procedure: env-module env
  2525.      Return the module of ENV, a lexical environment.
  2526.  
  2527.     standard-eval-closure
  2528.  
  2529.  -- Scheme Procedure: standard-eval-closure module
  2530.      Return an eval closure for the module MODULE.
  2531.  
  2532.     standard-interface-eval-closure
  2533.  
  2534.  -- Scheme Procedure: standard-interface-eval-closure module
  2535.      Return a interface eval closure for the module MODULE. Such a
  2536.      closure does not allow new bindings to be added.
  2537.  
  2538.     module-import-interface
  2539.  
  2540.  -- Scheme Procedure: module-import-interface module sym
  2541.  
  2542.     %get-pre-modules-obarray
  2543.  
  2544.  -- Scheme Procedure: %get-pre-modules-obarray
  2545.      Return the obarray that is used for all new bindings before the
  2546.      module system is booted.  The first call to `set-current-module'
  2547.      will boot the module system.
  2548.  
  2549.     exact?
  2550.  
  2551.  -- Scheme Procedure: exact? x
  2552.      Return `#t' if X is an exact number, `#f' otherwise.
  2553.  
  2554.     odd?
  2555.  
  2556.  -- Scheme Procedure: odd? n
  2557.      Return `#t' if N is an odd number, `#f' otherwise.
  2558.  
  2559.     even?
  2560.  
  2561.  -- Scheme Procedure: even? n
  2562.      Return `#t' if N is an even number, `#f' otherwise.
  2563.  
  2564.     inf?
  2565.  
  2566.  -- Scheme Procedure: inf? x
  2567.      Return `#t' if X is either `+inf.0' or `-inf.0', `#f' otherwise.
  2568.  
  2569.     nan?
  2570.  
  2571.  -- Scheme Procedure: nan? n
  2572.      Return `#t' if N is a NaN, `#f' otherwise.
  2573.  
  2574.     inf
  2575.  
  2576.  -- Scheme Procedure: inf
  2577.      Return Inf.
  2578.  
  2579.     nan
  2580.  
  2581.  -- Scheme Procedure: nan
  2582.      Return NaN.
  2583.  
  2584.     abs
  2585.  
  2586.  -- Scheme Procedure: abs x
  2587.      Return the absolute value of X.
  2588.  
  2589.     logand
  2590.  
  2591.  -- Scheme Procedure: logand n1 n2
  2592.      Return the bitwise AND of the integer arguments.
  2593.  
  2594.           (logand) => -1
  2595.           (logand 7) => 7
  2596.           (logand #b111 #b011 #b001) => 1
  2597.  
  2598.     logior
  2599.  
  2600.  -- Scheme Procedure: logior n1 n2
  2601.      Return the bitwise OR of the integer arguments.
  2602.  
  2603.           (logior) => 0
  2604.           (logior 7) => 7
  2605.           (logior #b000 #b001 #b011) => 3
  2606.  
  2607.     logxor
  2608.  
  2609.  -- Scheme Procedure: logxor n1 n2
  2610.      Return the bitwise XOR of the integer arguments.  A bit is set in
  2611.      the result if it is set in an odd number of arguments.
  2612.           (logxor) => 0
  2613.           (logxor 7) => 7
  2614.           (logxor #b000 #b001 #b011) => 2
  2615.           (logxor #b000 #b001 #b011 #b011) => 1
  2616.  
  2617.     logtest
  2618.  
  2619.  -- Scheme Procedure: logtest j k
  2620.      Test whether J and K have any 1 bits in common.  This is
  2621.      equivalent to `(not (zero? (logand j k)))', but without actually
  2622.      calculating the `logand', just testing for non-zero.
  2623.  
  2624.           (logtest #b0100 #b1011) => #f
  2625.           (logtest #b0100 #b0111) => #t
  2626.  
  2627.     logbit?
  2628.  
  2629.  -- Scheme Procedure: logbit? index j
  2630.      Test whether bit number INDEX in J is set.  INDEX starts from 0
  2631.      for the least significant bit.
  2632.  
  2633.           (logbit? 0 #b1101) => #t
  2634.           (logbit? 1 #b1101) => #f
  2635.           (logbit? 2 #b1101) => #t
  2636.           (logbit? 3 #b1101) => #t
  2637.           (logbit? 4 #b1101) => #f
  2638.  
  2639.     lognot
  2640.  
  2641.  -- Scheme Procedure: lognot n
  2642.      Return the integer which is the ones-complement of the integer
  2643.      argument.
  2644.  
  2645.           (number->string (lognot #b10000000) 2)
  2646.              => "-10000001"
  2647.           (number->string (lognot #b0) 2)
  2648.              => "-1"
  2649.  
  2650.     modulo-expt
  2651.  
  2652.  -- Scheme Procedure: modulo-expt n k m
  2653.      Return N raised to the integer exponent K, modulo M.
  2654.  
  2655.           (modulo-expt 2 3 5)
  2656.              => 3
  2657.  
  2658.     integer-expt
  2659.  
  2660.  -- Scheme Procedure: integer-expt n k
  2661.      Return N raised to the power K.  K must be an exact integer, N can
  2662.      be any number.
  2663.  
  2664.      Negative K is supported, and results in 1/n^abs(k) in the usual
  2665.      way.  N^0 is 1, as usual, and that includes 0^0 is 1.
  2666.  
  2667.           (integer-expt 2 5)   => 32
  2668.           (integer-expt -3 3)  => -27
  2669.           (integer-expt 5 -3)  => 1/125
  2670.           (integer-expt 0 0)   => 1
  2671.  
  2672.     ash
  2673.  
  2674.  -- Scheme Procedure: ash n cnt
  2675.      Return N shifted left by CNT bits, or shifted right if CNT is
  2676.      negative.  This is an "arithmetic" shift.
  2677.  
  2678.      This is effectively a multiplication by 2^CNT, and when CNT is
  2679.      negative it's a division, rounded towards negative infinity.
  2680.      (Note that this is not the same rounding as `quotient' does.)
  2681.  
  2682.      With N viewed as an infinite precision twos complement, `ash'
  2683.      means a left shift introducing zero bits, or a right shift
  2684.      dropping bits.
  2685.  
  2686.           (number->string (ash #b1 3) 2)     => "1000"
  2687.           (number->string (ash #b1010 -1) 2) => "101"
  2688.  
  2689.           ;; -23 is bits ...11101001, -6 is bits ...111010
  2690.           (ash -23 -2) => -6
  2691.  
  2692.     bit-extract
  2693.  
  2694.  -- Scheme Procedure: bit-extract n start end
  2695.      Return the integer composed of the START (inclusive) through END
  2696.      (exclusive) bits of N.  The STARTth bit becomes the 0-th bit in
  2697.      the result.
  2698.  
  2699.           (number->string (bit-extract #b1101101010 0 4) 2)
  2700.              => "1010"
  2701.           (number->string (bit-extract #b1101101010 4 9) 2)
  2702.              => "10110"
  2703.  
  2704.     logcount
  2705.  
  2706.  -- Scheme Procedure: logcount n
  2707.      Return the number of bits in integer N.  If integer is positive,
  2708.      the 1-bits in its binary representation are counted.  If negative,
  2709.      the 0-bits in its two's-complement binary representation are
  2710.      counted.  If 0, 0 is returned.
  2711.  
  2712.           (logcount #b10101010)
  2713.              => 4
  2714.           (logcount 0)
  2715.              => 0
  2716.           (logcount -2)
  2717.              => 1
  2718.  
  2719.     integer-length
  2720.  
  2721.  -- Scheme Procedure: integer-length n
  2722.      Return the number of bits necessary to represent N.
  2723.  
  2724.           (integer-length #b10101010)
  2725.              => 8
  2726.           (integer-length 0)
  2727.              => 0
  2728.           (integer-length #b1111)
  2729.              => 4
  2730.  
  2731.     number->string
  2732.  
  2733.  -- Scheme Procedure: number->string n [radix]
  2734.      Return a string holding the external representation of the number
  2735.      N in the given RADIX.  If N is inexact, a radix of 10 will be used.
  2736.  
  2737.     string->number
  2738.  
  2739.  -- Scheme Procedure: string->number string [radix]
  2740.      Return a number of the maximally precise representation expressed
  2741.      by the given STRING. RADIX must be an exact integer, either 2, 8,
  2742.      10, or 16. If supplied, RADIX is a default radix that may be
  2743.      overridden by an explicit radix prefix in STRING (e.g. "#o177").
  2744.      If RADIX is not supplied, then the default radix is 10. If string
  2745.      is not a syntactically valid notation for a number, then
  2746.      `string->number' returns `#f'.
  2747.  
  2748.     number?
  2749.  
  2750.  -- Scheme Procedure: number? x
  2751.      Return `#t' if X is a number, `#f' otherwise.
  2752.  
  2753.     complex?
  2754.  
  2755.  -- Scheme Procedure: complex? x
  2756.      Return `#t' if X is a complex number, `#f' otherwise.  Note that
  2757.      the sets of real, rational and integer values form subsets of the
  2758.      set of complex numbers, i. e. the predicate will also be fulfilled
  2759.      if X is a real, rational or integer number.
  2760.  
  2761.     real?
  2762.  
  2763.  -- Scheme Procedure: real? x
  2764.      Return `#t' if X is a real number, `#f' otherwise.  Note that the
  2765.      set of integer values forms a subset of the set of real numbers,
  2766.      i. e. the predicate will also be fulfilled if X is an integer
  2767.      number.
  2768.  
  2769.     rational?
  2770.  
  2771.  -- Scheme Procedure: rational? x
  2772.      Return `#t' if X is a rational number, `#f' otherwise.  Note that
  2773.      the set of integer values forms a subset of the set of rational
  2774.      numbers, i. e. the predicate will also be fulfilled if X is an
  2775.      integer number.
  2776.  
  2777.     integer?
  2778.  
  2779.  -- Scheme Procedure: integer? x
  2780.      Return `#t' if X is an integer number, `#f' else.
  2781.  
  2782.     inexact?
  2783.  
  2784.  -- Scheme Procedure: inexact? x
  2785.      Return `#t' if X is an inexact number, `#f' else.
  2786.  
  2787.     1+
  2788.  
  2789.  -- Scheme Procedure: 1+ x
  2790.      Return X+1.
  2791.  
  2792.     1-
  2793.  
  2794.  -- Scheme Procedure: 1- x
  2795.      Return X-1.
  2796.  
  2797.     truncate
  2798.  
  2799.  -- Scheme Procedure: truncate x
  2800.      Round the number X towards zero.
  2801.  
  2802.     round
  2803.  
  2804.  -- Scheme Procedure: round x
  2805.      Round the number X towards the nearest integer. When it is exactly
  2806.      halfway between two integers, round towards the even one.
  2807.  
  2808.     floor
  2809.  
  2810.  -- Scheme Procedure: floor x
  2811.      Round the number X towards minus infinity.
  2812.  
  2813.     ceiling
  2814.  
  2815.  -- Scheme Procedure: ceiling x
  2816.      Round the number X towards infinity.
  2817.  
  2818.     $expt
  2819.  
  2820.  -- Scheme Procedure: $expt x y
  2821.      Return X raised to the power of Y. This procedure does not accept
  2822.      complex arguments.
  2823.  
  2824.     $atan2
  2825.  
  2826.  -- Scheme Procedure: $atan2 x y
  2827.      Return the arc tangent of the two arguments X and Y. This is
  2828.      similar to calculating the arc tangent of X / Y, except that the
  2829.      signs of both arguments are used to determine the quadrant of the
  2830.      result. This procedure does not accept complex arguments.
  2831.  
  2832.     make-rectangular
  2833.  
  2834.  -- Scheme Procedure: make-rectangular real_part imaginary_part
  2835.      Return a complex number constructed of the given REAL-PART and
  2836.      IMAGINARY-PART parts.
  2837.  
  2838.     make-polar
  2839.  
  2840.  -- Scheme Procedure: make-polar x y
  2841.      Return the complex number X * e^(i * Y).
  2842.  
  2843.     inexact->exact
  2844.  
  2845.  -- Scheme Procedure: inexact->exact z
  2846.      Return an exact number that is numerically closest to Z.
  2847.  
  2848.     rationalize
  2849.  
  2850.  -- Scheme Procedure: rationalize x eps
  2851.      Returns the _simplest_ rational number differing from X by no more
  2852.      than EPS.
  2853.  
  2854.      As required by R5RS, `rationalize' only returns an exact result
  2855.      when both its arguments are exact.  Thus, you might need to use
  2856.      `inexact->exact' on the arguments.
  2857.  
  2858.           (rationalize (inexact->exact 1.2) 1/100)
  2859.           => 6/5
  2860.  
  2861.     log
  2862.  
  2863.  -- Scheme Procedure: log z
  2864.      Return the natural logarithm of Z.
  2865.  
  2866.     log10
  2867.  
  2868.  -- Scheme Procedure: log10 z
  2869.      Return the base 10 logarithm of Z.
  2870.  
  2871.     exp
  2872.  
  2873.  -- Scheme Procedure: exp z
  2874.      Return e to the power of Z, where e is the base of natural
  2875.      logarithms (2.71828...).
  2876.  
  2877.     sqrt
  2878.  
  2879.  -- Scheme Procedure: sqrt x
  2880.      Return the square root of Z.  Of the two possible roots (positive
  2881.      and negative), the one with the a positive real part is returned,
  2882.      or if that's zero then a positive imaginary part.  Thus,
  2883.  
  2884.           (sqrt 9.0)       => 3.0
  2885.           (sqrt -9.0)      => 0.0+3.0i
  2886.           (sqrt 1.0+1.0i)  => 1.09868411346781+0.455089860562227i
  2887.           (sqrt -1.0-1.0i) => 0.455089860562227-1.09868411346781i
  2888.  
  2889.     entity?
  2890.  
  2891.  -- Scheme Procedure: entity? obj
  2892.      Return `#t' if OBJ is an entity.
  2893.  
  2894.     operator?
  2895.  
  2896.  -- Scheme Procedure: operator? obj
  2897.      Return `#t' if OBJ is an operator.
  2898.  
  2899.     valid-object-procedure?
  2900.  
  2901.  -- Scheme Procedure: valid-object-procedure? proc
  2902.      Return `#t' iff PROC is a procedure that can be used with
  2903.      `set-object-procedure'.  It is always valid to use a closure
  2904.      constructed by `lambda'.
  2905.  
  2906.     set-object-procedure!
  2907.  
  2908.  -- Scheme Procedure: set-object-procedure! obj proc
  2909.      Set the object procedure of OBJ to PROC.  OBJ must be either an
  2910.      entity or an operator.
  2911.  
  2912.     make-class-object
  2913.  
  2914.  -- Scheme Procedure: make-class-object metaclass layout
  2915.      Create a new class object of class METACLASS, with the slot layout
  2916.      specified by LAYOUT.
  2917.  
  2918.     make-subclass-object
  2919.  
  2920.  -- Scheme Procedure: make-subclass-object class layout
  2921.      Create a subclass object of CLASS, with the slot layout specified
  2922.      by LAYOUT.
  2923.  
  2924.     object-properties
  2925.  
  2926.  -- Scheme Procedure: object-properties obj
  2927.      Return OBJ's property list.
  2928.  
  2929.     set-object-properties!
  2930.  
  2931.  -- Scheme Procedure: set-object-properties! obj alist
  2932.      Set OBJ's property list to ALIST.
  2933.  
  2934.     object-property
  2935.  
  2936.  -- Scheme Procedure: object-property obj key
  2937.      Return the property of OBJ with name KEY.
  2938.  
  2939.     set-object-property!
  2940.  
  2941.  -- Scheme Procedure: set-object-property! obj key value
  2942.      In OBJ's property list, set the property named KEY to VALUE.
  2943.  
  2944.     cons
  2945.  
  2946.  -- Scheme Procedure: cons x y
  2947.      Return a newly allocated pair whose car is X and whose cdr is Y.
  2948.      The pair is guaranteed to be different (in the sense of `eq?')
  2949.      from every previously existing object.
  2950.  
  2951.     pair?
  2952.  
  2953.  -- Scheme Procedure: pair? x
  2954.      Return `#t' if X is a pair; otherwise return `#f'.
  2955.  
  2956.     set-car!
  2957.  
  2958.  -- Scheme Procedure: set-car! pair value
  2959.      Stores VALUE in the car field of PAIR.  The value returned by
  2960.      `set-car!' is unspecified.
  2961.  
  2962.     set-cdr!
  2963.  
  2964.  -- Scheme Procedure: set-cdr! pair value
  2965.      Stores VALUE in the cdr field of PAIR.  The value returned by
  2966.      `set-cdr!' is unspecified.
  2967.  
  2968.     char-ready?
  2969.  
  2970.  -- Scheme Procedure: char-ready? [port]
  2971.      Return `#t' if a character is ready on input PORT and return `#f'
  2972.      otherwise.  If `char-ready?' returns `#t' then the next
  2973.      `read-char' operation on PORT is guaranteed not to hang.  If PORT
  2974.      is a file port at end of file then `char-ready?' returns `#t'.
  2975.  
  2976.      `char-ready?' exists to make it possible for a program to accept
  2977.      characters from interactive ports without getting stuck waiting
  2978.      for input.  Any input editors associated with such ports must make
  2979.      sure that characters whose existence has been asserted by
  2980.      `char-ready?' cannot be rubbed out.  If `char-ready?' were to
  2981.      return `#f' at end of file, a port at end of file would be
  2982.      indistinguishable from an interactive port that has no ready
  2983.      characters.
  2984.  
  2985.     drain-input
  2986.  
  2987.  -- Scheme Procedure: drain-input port
  2988.      This procedure clears a port's input buffers, similar to the way
  2989.      that force-output clears the output buffer.  The contents of the
  2990.      buffers are returned as a single string, e.g.,
  2991.  
  2992.           (define p (open-input-file ...))
  2993.           (drain-input p) => empty string, nothing buffered yet.
  2994.           (unread-char (read-char p) p)
  2995.           (drain-input p) => initial chars from p, up to the buffer size.
  2996.  
  2997.      Draining the buffers may be useful for cleanly finishing buffered
  2998.      I/O so that the file descriptor can be used directly for further
  2999.      input.
  3000.  
  3001.     current-input-port
  3002.  
  3003.  -- Scheme Procedure: current-input-port
  3004.      Return the current input port.  This is the default port used by
  3005.      many input procedures.  Initially, `current-input-port' returns
  3006.      the "standard input" in Unix and C terminology.
  3007.  
  3008.     current-output-port
  3009.  
  3010.  -- Scheme Procedure: current-output-port
  3011.      Return the current output port.  This is the default port used by
  3012.      many output procedures.  Initially, `current-output-port' returns
  3013.      the "standard output" in Unix and C terminology.
  3014.  
  3015.     current-error-port
  3016.  
  3017.  -- Scheme Procedure: current-error-port
  3018.      Return the port to which errors and warnings should be sent (the
  3019.      "standard error" in Unix and C terminology).
  3020.  
  3021.     current-load-port
  3022.  
  3023.  -- Scheme Procedure: current-load-port
  3024.      Return the current-load-port.  The load port is used internally by
  3025.      `primitive-load'.
  3026.  
  3027.     set-current-input-port
  3028.  
  3029.  -- Scheme Procedure: set-current-input-port port
  3030.  -- Scheme Procedure: set-current-output-port port
  3031.  -- Scheme Procedure: set-current-error-port port
  3032.      Change the ports returned by `current-input-port',
  3033.      `current-output-port' and `current-error-port', respectively, so
  3034.      that they use the supplied PORT for input or output.
  3035.  
  3036.     set-current-output-port
  3037.  
  3038.  -- Scheme Procedure: set-current-output-port port
  3039.      Set the current default output port to PORT.
  3040.  
  3041.     set-current-error-port
  3042.  
  3043.  -- Scheme Procedure: set-current-error-port port
  3044.      Set the current default error port to PORT.
  3045.  
  3046.     port-revealed
  3047.  
  3048.  -- Scheme Procedure: port-revealed port
  3049.      Return the revealed count for PORT.
  3050.  
  3051.     set-port-revealed!
  3052.  
  3053.  -- Scheme Procedure: set-port-revealed! port rcount
  3054.      Sets the revealed count for a port to a given value.  The return
  3055.      value is unspecified.
  3056.  
  3057.     port-mode
  3058.  
  3059.  -- Scheme Procedure: port-mode port
  3060.      Return the port modes associated with the open port PORT.  These
  3061.      will not necessarily be identical to the modes used when the port
  3062.      was opened, since modes such as "append" which are used only
  3063.      during port creation are not retained.
  3064.  
  3065.     close-port
  3066.  
  3067.  -- Scheme Procedure: close-port port
  3068.      Close the specified port object.  Return `#t' if it successfully
  3069.      closes a port or `#f' if it was already closed.  An exception may
  3070.      be raised if an error occurs, for example when flushing buffered
  3071.      output.  See also *note close: Ports and File Descriptors, for a
  3072.      procedure which can close file descriptors.
  3073.  
  3074.     close-input-port
  3075.  
  3076.  -- Scheme Procedure: close-input-port port
  3077.      Close the specified input port object.  The routine has no effect
  3078.      if the file has already been closed.  An exception may be raised
  3079.      if an error occurs.  The value returned is unspecified.
  3080.  
  3081.      See also *note close: Ports and File Descriptors, for a procedure
  3082.      which can close file descriptors.
  3083.  
  3084.     close-output-port
  3085.  
  3086.  -- Scheme Procedure: close-output-port port
  3087.      Close the specified output port object.  The routine has no effect
  3088.      if the file has already been closed.  An exception may be raised
  3089.      if an error occurs.  The value returned is unspecified.
  3090.  
  3091.      See also *note close: Ports and File Descriptors, for a procedure
  3092.      which can close file descriptors.
  3093.  
  3094.     port-for-each
  3095.  
  3096.  -- Scheme Procedure: port-for-each proc
  3097.      Apply PROC to each port in the Guile port table in turn.  The
  3098.      return value is unspecified.  More specifically, PROC is applied
  3099.      exactly once to every port that exists in the system at the time
  3100.      PORT-FOR-EACH is invoked.  Changes to the port table while
  3101.      PORT-FOR-EACH is running have no effect as far as PORT-FOR-EACH is
  3102.      concerned.
  3103.  
  3104.     input-port?
  3105.  
  3106.  -- Scheme Procedure: input-port? x
  3107.      Return `#t' if X is an input port, otherwise return `#f'.  Any
  3108.      object satisfying this predicate also satisfies `port?'.
  3109.  
  3110.     output-port?
  3111.  
  3112.  -- Scheme Procedure: output-port? x
  3113.      Return `#t' if X is an output port, otherwise return `#f'.  Any
  3114.      object satisfying this predicate also satisfies `port?'.
  3115.  
  3116.     port?
  3117.  
  3118.  -- Scheme Procedure: port? x
  3119.      Return a boolean indicating whether X is a port.  Equivalent to
  3120.      `(or (input-port? X) (output-port?  X))'.
  3121.  
  3122.     port-closed?
  3123.  
  3124.  -- Scheme Procedure: port-closed? port
  3125.      Return `#t' if PORT is closed or `#f' if it is open.
  3126.  
  3127.     eof-object?
  3128.  
  3129.  -- Scheme Procedure: eof-object? x
  3130.      Return `#t' if X is an end-of-file object; otherwise return `#f'.
  3131.  
  3132.     force-output
  3133.  
  3134.  -- Scheme Procedure: force-output [port]
  3135.      Flush the specified output port, or the current output port if PORT
  3136.      is omitted.  The current output buffer contents are passed to the
  3137.      underlying port implementation (e.g., in the case of fports, the
  3138.      data will be written to the file and the output buffer will be
  3139.      cleared.)  It has no effect on an unbuffered port.
  3140.  
  3141.      The return value is unspecified.
  3142.  
  3143.     flush-all-ports
  3144.  
  3145.  -- Scheme Procedure: flush-all-ports
  3146.      Equivalent to calling `force-output' on all open output ports.
  3147.      The return value is unspecified.
  3148.  
  3149.     read-char
  3150.  
  3151.  -- Scheme Procedure: read-char [port]
  3152.      Return the next character available from PORT, updating PORT to
  3153.      point to the following character.  If no more characters are
  3154.      available, the end-of-file object is returned.
  3155.  
  3156.     peek-char
  3157.  
  3158.  -- Scheme Procedure: peek-char [port]
  3159.      Return the next character available from PORT, _without_ updating
  3160.      PORT to point to the following character.  If no more characters
  3161.      are available, the end-of-file object is returned.
  3162.  
  3163.      The value returned by a call to `peek-char' is the same as the
  3164.      value that would have been returned by a call to `read-char' on
  3165.      the same port.  The only difference is that the very next call to
  3166.      `read-char' or `peek-char' on that PORT will return the value
  3167.      returned by the preceding call to `peek-char'.  In particular, a
  3168.      call to `peek-char' on an interactive port will hang waiting for
  3169.      input whenever a call to `read-char' would have hung.
  3170.  
  3171.     unread-char
  3172.  
  3173.  -- Scheme Procedure: unread-char cobj [port]
  3174.      Place CHAR in PORT so that it will be read by the next read
  3175.      operation.  If called multiple times, the unread characters will
  3176.      be read again in last-in first-out order.  If PORT is not
  3177.      supplied, the current input port is used.
  3178.  
  3179.     unread-string
  3180.  
  3181.  -- Scheme Procedure: unread-string str port
  3182.      Place the string STR in PORT so that its characters will be read
  3183.      in subsequent read operations.  If called multiple times, the
  3184.      unread characters will be read again in last-in first-out order.
  3185.      If PORT is not supplied, the current-input-port is used.
  3186.  
  3187.     seek
  3188.  
  3189.  -- Scheme Procedure: seek fd_port offset whence
  3190.      Sets the current position of FD/PORT to the integer OFFSET, which
  3191.      is interpreted according to the value of WHENCE.
  3192.  
  3193.      One of the following variables should be supplied for WHENCE:
  3194.  
  3195.       -- Variable: SEEK_SET
  3196.           Seek from the beginning of the file.
  3197.  
  3198.       -- Variable: SEEK_CUR
  3199.           Seek from the current position.
  3200.  
  3201.       -- Variable: SEEK_END
  3202.           Seek from the end of the file.
  3203.      If FD/PORT is a file descriptor, the underlying system call is
  3204.      `lseek'.  PORT may be a string port.
  3205.  
  3206.      The value returned is the new position in the file.  This means
  3207.      that the current position of a port can be obtained using:
  3208.           (seek port 0 SEEK_CUR)
  3209.  
  3210.     truncate-file
  3211.  
  3212.  -- Scheme Procedure: truncate-file object [length]
  3213.      Truncate FILE to LENGTH bytes.  FILE can be a filename string, a
  3214.      port object, or an integer file descriptor.  The return value is
  3215.      unspecified.
  3216.  
  3217.      For a port or file descriptor LENGTH can be omitted, in which case
  3218.      the file is truncated at the current position (per `ftell' above).
  3219.  
  3220.      On most systems a file can be extended by giving a length greater
  3221.      than the current size, but this is not mandatory in the POSIX
  3222.      standard.
  3223.  
  3224.     port-line
  3225.  
  3226.  -- Scheme Procedure: port-line port
  3227.      Return the current line number for PORT.
  3228.  
  3229.      The first line of a file is 0.  But you might want to add 1 when
  3230.      printing line numbers, since starting from 1 is traditional in
  3231.      error messages, and likely to be more natural to non-programmers.
  3232.  
  3233.     set-port-line!
  3234.  
  3235.  -- Scheme Procedure: set-port-line! port line
  3236.      Set the current line number for PORT to LINE.  The first line of a
  3237.      file is 0.
  3238.  
  3239.     port-column
  3240.  
  3241.  -- Scheme Procedure: port-column port
  3242.      Return the current column number of PORT.  If the number is
  3243.      unknown, the result is #f.  Otherwise, the result is a 0-origin
  3244.      integer - i.e. the first character of the first line is line 0,
  3245.      column 0.  (However, when you display a file position, for example
  3246.      in an error message, we recommend you add 1 to get 1-origin
  3247.      integers.  This is because lines and column numbers traditionally
  3248.      start with 1, and that is what non-programmers will find most
  3249.      natural.)
  3250.  
  3251.     set-port-column!
  3252.  
  3253.  -- Scheme Procedure: set-port-column! port column
  3254.      Set the current column of PORT.  Before reading the first
  3255.      character on a line the column should be 0.
  3256.  
  3257.     port-filename
  3258.  
  3259.  -- Scheme Procedure: port-filename port
  3260.      Return the filename associated with PORT.  This function returns
  3261.      the strings "standard input", "standard output" and "standard
  3262.      error" when called on the current input, output and error ports
  3263.      respectively.
  3264.  
  3265.     set-port-filename!
  3266.  
  3267.  -- Scheme Procedure: set-port-filename! port filename
  3268.      Change the filename associated with PORT, using the current input
  3269.      port if none is specified.  Note that this does not change the
  3270.      port's source of data, but only the value that is returned by
  3271.      `port-filename' and reported in diagnostic output.
  3272.  
  3273.     %make-void-port
  3274.  
  3275.  -- Scheme Procedure: %make-void-port mode
  3276.      Create and return a new void port.  A void port acts like
  3277.      `/dev/null'.  The MODE argument specifies the input/output modes
  3278.      for this port: see the documentation for `open-file' in *note File
  3279.      Ports::.
  3280.  
  3281.     print-options-interface
  3282.  
  3283.  -- Scheme Procedure: print-options-interface [setting]
  3284.      Option interface for the print options. Instead of using this
  3285.      procedure directly, use the procedures `print-enable',
  3286.      `print-disable', `print-set!' and `print-options'.
  3287.  
  3288.     simple-format
  3289.  
  3290.  -- Scheme Procedure: simple-format destination message . args
  3291.      Write MESSAGE to DESTINATION, defaulting to the current output
  3292.      port.  MESSAGE can contain `~A' (was `%s') and `~S' (was `%S')
  3293.      escapes.  When printed, the escapes are replaced with
  3294.      corresponding members of ARGS: `~A' formats using `display' and
  3295.      `~S' formats using `write'.  If DESTINATION is `#t', then use the
  3296.      current output port, if DESTINATION is `#f', then return a string
  3297.      containing the formatted text. Does not add a trailing newline.
  3298.  
  3299.     newline
  3300.  
  3301.  -- Scheme Procedure: newline [port]
  3302.      Send a newline to PORT.  If PORT is omitted, send to the current
  3303.      output port.
  3304.  
  3305.     write-char
  3306.  
  3307.  -- Scheme Procedure: write-char chr [port]
  3308.      Send character CHR to PORT.
  3309.  
  3310.     port-with-print-state
  3311.  
  3312.  -- Scheme Procedure: port-with-print-state port [pstate]
  3313.      Create a new port which behaves like PORT, but with an included
  3314.      print state PSTATE.  PSTATE is optional.  If PSTATE isn't supplied
  3315.      and PORT already has a print state, the old print state is reused.
  3316.  
  3317.     get-print-state
  3318.  
  3319.  -- Scheme Procedure: get-print-state port
  3320.      Return the print state of the port PORT. If PORT has no associated
  3321.      print state, `#f' is returned.
  3322.  
  3323.     procedure-properties
  3324.  
  3325.  -- Scheme Procedure: procedure-properties proc
  3326.      Return OBJ's property list.
  3327.  
  3328.     set-procedure-properties!
  3329.  
  3330.  -- Scheme Procedure: set-procedure-properties! proc new_val
  3331.      Set OBJ's property list to ALIST.
  3332.  
  3333.     procedure-property
  3334.  
  3335.  -- Scheme Procedure: procedure-property p k
  3336.      Return the property of OBJ with name KEY.
  3337.  
  3338.     set-procedure-property!
  3339.  
  3340.  -- Scheme Procedure: set-procedure-property! p k v
  3341.      In OBJ's property list, set the property named KEY to VALUE.
  3342.  
  3343.     procedure?
  3344.  
  3345.  -- Scheme Procedure: procedure? obj
  3346.      Return `#t' if OBJ is a procedure.
  3347.  
  3348.     closure?
  3349.  
  3350.  -- Scheme Procedure: closure? obj
  3351.      Return `#t' if OBJ is a closure.
  3352.  
  3353.     thunk?
  3354.  
  3355.  -- Scheme Procedure: thunk? obj
  3356.      Return `#t' if OBJ is a thunk.
  3357.  
  3358.     procedure-documentation
  3359.  
  3360.  -- Scheme Procedure: procedure-documentation proc
  3361.      Return the documentation string associated with `proc'.  By
  3362.      convention, if a procedure contains more than one expression and
  3363.      the first expression is a string constant, that string is assumed
  3364.      to contain documentation for that procedure.
  3365.  
  3366.     procedure-with-setter?
  3367.  
  3368.  -- Scheme Procedure: procedure-with-setter? obj
  3369.      Return `#t' if OBJ is a procedure with an associated setter
  3370.      procedure.
  3371.  
  3372.     make-procedure-with-setter
  3373.  
  3374.  -- Scheme Procedure: make-procedure-with-setter procedure setter
  3375.      Create a new procedure which behaves like PROCEDURE, but with the
  3376.      associated setter SETTER.
  3377.  
  3378.     procedure
  3379.  
  3380.  -- Scheme Procedure: procedure proc
  3381.      Return the procedure of PROC, which must be either a procedure
  3382.      with setter, or an operator struct.
  3383.  
  3384.     primitive-make-property
  3385.  
  3386.  -- Scheme Procedure: primitive-make-property not_found_proc
  3387.      Create a "property token" that can be used with
  3388.      `primitive-property-ref' and `primitive-property-set!'.  See
  3389.      `primitive-property-ref' for the significance of NOT_FOUND_PROC.
  3390.  
  3391.     primitive-property-ref
  3392.  
  3393.  -- Scheme Procedure: primitive-property-ref prop obj
  3394.      Return the property PROP of OBJ.
  3395.  
  3396.      When no value has yet been associated with PROP and OBJ, the
  3397.      NOT-FOUND-PROC from PROP is used.  A call `(NOT-FOUND-PROC PROP
  3398.      OBJ)' is made and the result set as the property value.  If
  3399.      NOT-FOUND-PROC is `#f' then `#f' is the property value.
  3400.  
  3401.     primitive-property-set!
  3402.  
  3403.  -- Scheme Procedure: primitive-property-set! prop obj val
  3404.      Set the property PROP of OBJ to VAL.
  3405.  
  3406.     primitive-property-del!
  3407.  
  3408.  -- Scheme Procedure: primitive-property-del! prop obj
  3409.      Remove any value associated with PROP and OBJ.
  3410.  
  3411.     random
  3412.  
  3413.  -- Scheme Procedure: random n [state]
  3414.      Return a number in [0, N).
  3415.  
  3416.      Accepts a positive integer or real n and returns a number of the
  3417.      same type between zero (inclusive) and N (exclusive). The values
  3418.      returned have a uniform distribution.
  3419.  
  3420.      The optional argument STATE must be of the type produced by
  3421.      `seed->random-state'. It defaults to the value of the variable
  3422.      *RANDOM-STATE*. This object is used to maintain the state of the
  3423.      pseudo-random-number generator and is altered as a side effect of
  3424.      the random operation.
  3425.  
  3426.     copy-random-state
  3427.  
  3428.  -- Scheme Procedure: copy-random-state [state]
  3429.      Return a copy of the random state STATE.
  3430.  
  3431.     seed->random-state
  3432.  
  3433.  -- Scheme Procedure: seed->random-state seed
  3434.      Return a new random state using SEED.
  3435.  
  3436.     random:uniform
  3437.  
  3438.  -- Scheme Procedure: random:uniform [state]
  3439.      Return a uniformly distributed inexact real random number in [0,1).
  3440.  
  3441.     random:normal
  3442.  
  3443.  -- Scheme Procedure: random:normal [state]
  3444.      Return an inexact real in a normal distribution.  The distribution
  3445.      used has mean 0 and standard deviation 1.  For a normal
  3446.      distribution with mean m and standard deviation d use `(+ m (* d
  3447.      (random:normal)))'.
  3448.  
  3449.     random:solid-sphere!
  3450.  
  3451.  -- Scheme Procedure: random:solid-sphere! v [state]
  3452.      Fills VECT with inexact real random numbers the sum of whose
  3453.      squares is less than 1.0.  Thinking of VECT as coordinates in
  3454.      space of dimension N = `(vector-length VECT)', the coordinates are
  3455.      uniformly distributed within the unit N-sphere.
  3456.  
  3457.     random:hollow-sphere!
  3458.  
  3459.  -- Scheme Procedure: random:hollow-sphere! v [state]
  3460.      Fills vect with inexact real random numbers the sum of whose
  3461.      squares is equal to 1.0.  Thinking of vect as coordinates in space
  3462.      of dimension n = (vector-length vect), the coordinates are
  3463.      uniformly distributed over the surface of the unit n-sphere.
  3464.  
  3465.     random:normal-vector!
  3466.  
  3467.  -- Scheme Procedure: random:normal-vector! v [state]
  3468.      Fills vect with inexact real random numbers that are independent
  3469.      and standard normally distributed (i.e., with mean 0 and variance
  3470.      1).
  3471.  
  3472.     random:exp
  3473.  
  3474.  -- Scheme Procedure: random:exp [state]
  3475.      Return an inexact real in an exponential distribution with mean 1.
  3476.      For an exponential distribution with mean u use (* u (random:exp)).
  3477.  
  3478.     %read-delimited!
  3479.  
  3480.  -- Scheme Procedure: %read-delimited! delims str gobble [port [start
  3481.           [end]]]
  3482.      Read characters from PORT into STR until one of the characters in
  3483.      the DELIMS string is encountered.  If GOBBLE is true, discard the
  3484.      delimiter character; otherwise, leave it in the input stream for
  3485.      the next read.  If PORT is not specified, use the value of
  3486.      `(current-input-port)'.  If START or END are specified, store data
  3487.      only into the substring of STR bounded by START and END (which
  3488.      default to the beginning and end of the string, respectively).
  3489.  
  3490.      Return a pair consisting of the delimiter that terminated the
  3491.      string and the number of characters read.  If reading stopped at
  3492.      the end of file, the delimiter returned is the EOF-OBJECT; if the
  3493.      string was filled without encountering a delimiter, this value is
  3494.      `#f'.
  3495.  
  3496.     %read-line
  3497.  
  3498.  -- Scheme Procedure: %read-line [port]
  3499.      Read a newline-terminated line from PORT, allocating storage as
  3500.      necessary.  The newline terminator (if any) is removed from the
  3501.      string, and a pair consisting of the line and its delimiter is
  3502.      returned.  The delimiter may be either a newline or the
  3503.      EOF-OBJECT; if `%read-line' is called at the end of file, it
  3504.      returns the pair `(#<eof> . #<eof>)'.
  3505.  
  3506.     write-line
  3507.  
  3508.  -- Scheme Procedure: write-line obj [port]
  3509.      Display OBJ and a newline character to PORT.  If PORT is not
  3510.      specified, `(current-output-port)' is used.  This function is
  3511.      equivalent to:
  3512.           (display obj [port])
  3513.           (newline [port])
  3514.  
  3515.     read-options-interface
  3516.  
  3517.  -- Scheme Procedure: read-options-interface [setting]
  3518.      Option interface for the read options. Instead of using this
  3519.      procedure directly, use the procedures `read-enable',
  3520.      `read-disable', `read-set!' and `read-options'.
  3521.  
  3522.     read
  3523.  
  3524.  -- Scheme Procedure: read [port]
  3525.      Read an s-expression from the input port PORT, or from the current
  3526.      input port if PORT is not specified.  Any whitespace before the
  3527.      next token is discarded.
  3528.  
  3529.     read-hash-extend
  3530.  
  3531.  -- Scheme Procedure: read-hash-extend chr proc
  3532.      Install the procedure PROC for reading expressions starting with
  3533.      the character sequence `#' and CHR.  PROC will be called with two
  3534.      arguments:  the character CHR and the port to read further data
  3535.      from. The object returned will be the return value of `read'.
  3536.  
  3537.     call-with-dynamic-root
  3538.  
  3539.  -- Scheme Procedure: call-with-dynamic-root thunk handler
  3540.      Call THUNK with a new dynamic state and withina continuation
  3541.      barrier.  The HANDLER catches allotherwise uncaught throws and
  3542.      executes within the samedynamic context as THUNK.
  3543.  
  3544.     dynamic-root
  3545.  
  3546.  -- Scheme Procedure: dynamic-root
  3547.      Return an object representing the current dynamic root.
  3548.  
  3549.      These objects are only useful for comparison using `eq?'.
  3550.  
  3551.  
  3552.     read-string!/partial
  3553.  
  3554.  -- Scheme Procedure: read-string!/partial str [port_or_fdes [start
  3555.           [end]]]
  3556.      Read characters from a port or file descriptor into a string STR.
  3557.      A port must have an underlying file descriptor -- a so-called
  3558.      fport.  This procedure is scsh-compatible and can efficiently read
  3559.      large strings.  It will:
  3560.  
  3561.         * attempt to fill the entire string, unless the START and/or
  3562.           END arguments are supplied.  i.e., START defaults to 0 and
  3563.           END defaults to `(string-length str)'
  3564.  
  3565.         * use the current input port if PORT_OR_FDES is not supplied.
  3566.  
  3567.         * return fewer than the requested number of characters in some
  3568.           cases, e.g., on end of file, if interrupted by a signal, or if
  3569.           not all the characters are immediately available.
  3570.  
  3571.         * wait indefinitely for some input if no characters are
  3572.           currently available, unless the port is in non-blocking mode.
  3573.  
  3574.         * read characters from the port's input buffers if available,
  3575.           instead from the underlying file descriptor.
  3576.  
  3577.         * return `#f' if end-of-file is encountered before reading any
  3578.           characters, otherwise return the number of characters read.
  3579.  
  3580.         * return 0 if the port is in non-blocking mode and no characters
  3581.           are immediately available.
  3582.  
  3583.         * return 0 if the request is for 0 bytes, with no end-of-file
  3584.           check.
  3585.  
  3586.     write-string/partial
  3587.  
  3588.  -- Scheme Procedure: write-string/partial str [port_or_fdes [start
  3589.           [end]]]
  3590.      Write characters from a string STR to a port or file descriptor.
  3591.      A port must have an underlying file descriptor -- a so-called
  3592.      fport.  This procedure is scsh-compatible and can efficiently
  3593.      write large strings.  It will:
  3594.  
  3595.         * attempt to write the entire string, unless the START and/or
  3596.           END arguments are supplied.  i.e., START defaults to 0 and
  3597.           END defaults to `(string-length str)'
  3598.  
  3599.         * use the current output port if PORT_OF_FDES is not supplied.
  3600.  
  3601.         * in the case of a buffered port, store the characters in the
  3602.           port's output buffer, if all will fit.  If they will not fit
  3603.           then any existing buffered characters will be flushed before
  3604.           attempting to write the new characters directly to the
  3605.           underlying file descriptor.  If the port is in non-blocking
  3606.           mode and buffered characters can not be flushed immediately,
  3607.           then an `EAGAIN' system-error exception will be raised (Note:
  3608.           scsh does not support the use of non-blocking buffered ports.)
  3609.  
  3610.         * write fewer than the requested number of characters in some
  3611.           cases, e.g., if interrupted by a signal or if not all of the
  3612.           output can be accepted immediately.
  3613.  
  3614.         * wait indefinitely for at least one character from STR to be
  3615.           accepted by the port, unless the port is in non-blocking mode.
  3616.  
  3617.         * return the number of characters accepted by the port.
  3618.  
  3619.         * return 0 if the port is in non-blocking mode and can not
  3620.           accept at least one character from STR immediately
  3621.  
  3622.         * return 0 immediately if the request size is 0 bytes.
  3623.  
  3624.     sigaction
  3625.  
  3626.  -- Scheme Procedure: sigaction signum [handler [flags [thread]]]
  3627.      Install or report the signal handler for a specified signal.
  3628.  
  3629.      SIGNUM is the signal number, which can be specified using the value
  3630.      of variables such as `SIGINT'.
  3631.  
  3632.      If HANDLER is omitted, `sigaction' returns a pair: the CAR is the
  3633.      current signal hander, which will be either an integer with the
  3634.      value `SIG_DFL' (default action) or `SIG_IGN' (ignore), or the
  3635.      Scheme procedure which handles the signal, or `#f' if a non-Scheme
  3636.      procedure handles the signal.  The CDR contains the current
  3637.      `sigaction' flags for the handler.
  3638.  
  3639.      If HANDLER is provided, it is installed as the new handler for
  3640.      SIGNUM.  HANDLER can be a Scheme procedure taking one argument, or
  3641.      the value of `SIG_DFL' (default action) or `SIG_IGN' (ignore), or
  3642.      `#f' to restore whatever signal handler was installed before
  3643.      `sigaction' was first used.  When a scheme procedure has been
  3644.      specified, that procedure will run in the given THREAD.   When no
  3645.      thread has been given, the thread that made this call to
  3646.      `sigaction' is used.  Flags can optionally be specified for the
  3647.      new handler.  The return value is a pair with information about the
  3648.      old handler as described above.
  3649.  
  3650.      This interface does not provide access to the "signal blocking"
  3651.      facility.  Maybe this is not needed, since the thread support may
  3652.      provide solutions to the problem of consistent access to data
  3653.      structures.
  3654.  
  3655.     restore-signals
  3656.  
  3657.  -- Scheme Procedure: restore-signals
  3658.      Return all signal handlers to the values they had before any call
  3659.      to `sigaction' was made.  The return value is unspecified.
  3660.  
  3661.     alarm
  3662.  
  3663.  -- Scheme Procedure: alarm i
  3664.      Set a timer to raise a `SIGALRM' signal after the specified number
  3665.      of seconds (an integer).  It's advisable to install a signal
  3666.      handler for `SIGALRM' beforehand, since the default action is to
  3667.      terminate the process.
  3668.  
  3669.      The return value indicates the time remaining for the previous
  3670.      alarm, if any.  The new value replaces the previous alarm.  If
  3671.      there was no previous alarm, the return value is zero.
  3672.  
  3673.     setitimer
  3674.  
  3675.  -- Scheme Procedure: setitimer which_timer interval_seconds
  3676.           interval_microseconds value_seconds value_microseconds
  3677.      Set the timer specified by WHICH_TIMER according to the given
  3678.      INTERVAL_SECONDS, INTERVAL_MICROSECONDS, VALUE_SECONDS, and
  3679.      VALUE_MICROSECONDS values.
  3680.  
  3681.      Return information about the timer's previous setting.  Errors are
  3682.      handled as described in the guile info pages under "POSIX
  3683.      Interface Conventions".
  3684.  
  3685.      The timers available are: `ITIMER_REAL', `ITIMER_VIRTUAL', and
  3686.      `ITIMER_PROF'.
  3687.  
  3688.      The return value will be a list of two cons pairs representing the
  3689.      current state of the given timer.  The first pair is the seconds
  3690.      and microseconds of the timer `it_interval', and the second pair is
  3691.      the seconds and microseconds of the timer `it_value'.
  3692.  
  3693.     getitimer
  3694.  
  3695.  -- Scheme Procedure: getitimer which_timer
  3696.      Return information about the timer specified by WHICH_TIMER Errors
  3697.      are handled as described in the guile info pages under "POSIX
  3698.      Interface Conventions".
  3699.  
  3700.      The timers available are: `ITIMER_REAL', `ITIMER_VIRTUAL', and
  3701.      `ITIMER_PROF'.
  3702.  
  3703.      The return value will be a list of two cons pairs representing the
  3704.      current state of the given timer.  The first pair is the seconds
  3705.      and microseconds of the timer `it_interval', and the second pair is
  3706.      the seconds and microseconds of the timer `it_value'.
  3707.  
  3708.     pause
  3709.  
  3710.  -- Scheme Procedure: pause
  3711.      Pause the current process (thread?) until a signal arrives whose
  3712.      action is to either terminate the current process or invoke a
  3713.      handler procedure.  The return value is unspecified.
  3714.  
  3715.     sleep
  3716.  
  3717.  -- Scheme Procedure: sleep i
  3718.      Wait for the given number of seconds (an integer) or until a signal
  3719.      arrives.  The return value is zero if the time elapses or the
  3720.      number of seconds remaining otherwise.
  3721.  
  3722.      See also `usleep'.
  3723.  
  3724.     usleep
  3725.  
  3726.  -- Scheme Procedure: usleep i
  3727.      Wait the given period USECS microseconds (an integer).  If a
  3728.      signal arrives the wait stops and the return value is the time
  3729.      remaining, in microseconds.  If the period elapses with no signal
  3730.      the return is zero.
  3731.  
  3732.      On most systems the process scheduler is not microsecond accurate
  3733.      and the actual period slept by `usleep' may be rounded to a system
  3734.      clock tick boundary.  Traditionally such ticks were 10 milliseconds
  3735.      apart, and that interval is often still used.
  3736.  
  3737.      See also `sleep'.
  3738.  
  3739.     raise
  3740.  
  3741.  -- Scheme Procedure: raise sig
  3742.      Sends a specified signal SIG to the current process, where SIG is
  3743.      as described for the kill procedure.
  3744.  
  3745.     system
  3746.  
  3747.  -- Scheme Procedure: system [cmd]
  3748.      Execute CMD using the operating system's "command processor".
  3749.      Under Unix this is usually the default shell `sh'.  The value
  3750.      returned is CMD's exit status as returned by `waitpid', which can
  3751.      be interpreted using `status:exit-val' and friends.
  3752.  
  3753.      If `system' is called without arguments, return a boolean
  3754.      indicating whether the command processor is available.
  3755.  
  3756.     system*
  3757.  
  3758.  -- Scheme Procedure: system* . args
  3759.      Execute the command indicated by ARGS.  The first element must be
  3760.      a string indicating the command to be executed, and the remaining
  3761.      items must be strings representing each of the arguments to that
  3762.      command.
  3763.  
  3764.      This function returns the exit status of the command as provided by
  3765.      `waitpid'.  This value can be handled with `status:exit-val' and
  3766.      the related functions.
  3767.  
  3768.      `system*' is similar to `system', but accepts only one string
  3769.      per-argument, and performs no shell interpretation.  The command
  3770.      is executed using fork and execlp.  Accordingly this function may
  3771.      be safer than `system' in situations where shell interpretation is
  3772.      not required.
  3773.  
  3774.      Example: (system* "echo" "foo" "bar")
  3775.  
  3776.     getenv
  3777.  
  3778.  -- Scheme Procedure: getenv nam
  3779.      Looks up the string NAME in the current environment.  The return
  3780.      value is `#f' unless a string of the form `NAME=VALUE' is found,
  3781.      in which case the string `VALUE' is returned.
  3782.  
  3783.     primitive-exit
  3784.  
  3785.  -- Scheme Procedure: primitive-exit [status]
  3786.      Terminate the current process without unwinding the Scheme stack.
  3787.      The exit status is STATUS if supplied, otherwise zero.
  3788.  
  3789.     primitive-_exit
  3790.  
  3791.  -- Scheme Procedure: primitive-_exit [status]
  3792.      Terminate the current process using the _exit() system call and
  3793.      without unwinding the Scheme stack.  The exit status is STATUS if
  3794.      supplied, otherwise zero.
  3795.  
  3796.      This function is typically useful after a fork, to ensure no
  3797.      Scheme cleanups or `atexit' handlers are run (those usually
  3798.      belonging in the parent rather than the child).
  3799.  
  3800.     restricted-vector-sort!
  3801.  
  3802.  -- Scheme Procedure: restricted-vector-sort! vec less startpos endpos
  3803.      Sort the vector VEC, using LESS for comparing the vector elements.
  3804.      STARTPOS (inclusively) and ENDPOS (exclusively) delimit the range
  3805.      of the vector which gets sorted.  The return value is not
  3806.      specified.
  3807.  
  3808.     sorted?
  3809.  
  3810.  -- Scheme Procedure: sorted? items less
  3811.      Return `#t' iff ITEMS is a list or a vector such that for all 1 <=
  3812.      i <= m, the predicate LESS returns true when applied to all
  3813.      elements i - 1 and i
  3814.  
  3815.     merge
  3816.  
  3817.  -- Scheme Procedure: merge alist blist less
  3818.      Merge two already sorted lists into one.  Given two lists ALIST
  3819.      and BLIST, such that `(sorted? alist less?)' and `(sorted? blist
  3820.      less?)', return a new list in which the elements of ALIST and
  3821.      BLIST have been stably interleaved so that `(sorted? (merge alist
  3822.      blist less?) less?)'.  Note:  this does _not_ accept vectors.
  3823.  
  3824.     merge!
  3825.  
  3826.  -- Scheme Procedure: merge! alist blist less
  3827.      Takes two lists ALIST and BLIST such that `(sorted? alist less?)'
  3828.      and `(sorted? blist less?)' and returns a new list in which the
  3829.      elements of ALIST and BLIST have been stably interleaved so that
  3830.      `(sorted? (merge alist blist less?) less?)'.  This is the
  3831.      destructive variant of `merge' Note:  this does _not_ accept
  3832.      vectors.
  3833.  
  3834.     sort!
  3835.  
  3836.  -- Scheme Procedure: sort! items less
  3837.      Sort the sequence ITEMS, which may be a list or a vector.  LESS is
  3838.      used for comparing the sequence elements.  The sorting is
  3839.      destructive, that means that the input sequence is modified to
  3840.      produce the sorted result.  This is not a stable sort.
  3841.  
  3842.     sort
  3843.  
  3844.  -- Scheme Procedure: sort items less
  3845.      Sort the sequence ITEMS, which may be a list or a vector.  LESS is
  3846.      used for comparing the sequence elements.  This is not a stable
  3847.      sort.
  3848.  
  3849.     stable-sort!
  3850.  
  3851.  -- Scheme Procedure: stable-sort! items less
  3852.      Sort the sequence ITEMS, which may be a list or a vector. LESS is
  3853.      used for comparing the sequence elements.  The sorting is
  3854.      destructive, that means that the input sequence is modified to
  3855.      produce the sorted result.  This is a stable sort.
  3856.  
  3857.     stable-sort
  3858.  
  3859.  -- Scheme Procedure: stable-sort items less
  3860.      Sort the sequence ITEMS, which may be a list or a vector. LESS is
  3861.      used for comparing the sequence elements.  This is a stable sort.
  3862.  
  3863.     sort-list!
  3864.  
  3865.  -- Scheme Procedure: sort-list! items less
  3866.      Sort the list ITEMS, using LESS for comparing the list elements.
  3867.      The sorting is destructive, that means that the input list is
  3868.      modified to produce the sorted result.  This is a stable sort.
  3869.  
  3870.     sort-list
  3871.  
  3872.  -- Scheme Procedure: sort-list items less
  3873.      Sort the list ITEMS, using LESS for comparing the list elements.
  3874.      This is a stable sort.
  3875.  
  3876.     source-properties
  3877.  
  3878.  -- Scheme Procedure: source-properties obj
  3879.      Return the source property association list of OBJ.
  3880.  
  3881.     set-source-properties!
  3882.  
  3883.  -- Scheme Procedure: set-source-properties! obj plist
  3884.      Install the association list PLIST as the source property list for
  3885.      OBJ.
  3886.  
  3887.     source-property
  3888.  
  3889.  -- Scheme Procedure: source-property obj key
  3890.      Return the source property specified by KEY from OBJ's source
  3891.      property list.
  3892.  
  3893.     set-source-property!
  3894.  
  3895.  -- Scheme Procedure: set-source-property! obj key datum
  3896.      Set the source property of object OBJ, which is specified by KEY
  3897.      to DATUM.  Normally, the key will be a symbol.
  3898.  
  3899.     %get-stack-size
  3900.  
  3901.  -- Scheme Procedure: %get-stack-size
  3902.      Return the current thread's C stack size (in Scheme objects).
  3903.  
  3904.     stack?
  3905.  
  3906.  -- Scheme Procedure: stack? obj
  3907.      Return `#t' if OBJ is a calling stack.
  3908.  
  3909.     make-stack
  3910.  
  3911.  -- Scheme Procedure: make-stack obj . args
  3912.      Create a new stack. If OBJ is `#t', the current evaluation stack
  3913.      is used for creating the stack frames, otherwise the frames are
  3914.      taken from OBJ (which must be either a debug object or a
  3915.      continuation).
  3916.  
  3917.      ARGS should be a list containing any combination of integer,
  3918.      procedure and `#t' values.
  3919.  
  3920.      These values specify various ways of cutting away uninteresting
  3921.      stack frames from the top and bottom of the stack that
  3922.      `make-stack' returns.  They come in pairs like this: `(INNER_CUT_1
  3923.      OUTER_CUT_1 INNER_CUT_2 OUTER_CUT_2 ...)'.
  3924.  
  3925.      Each INNER_CUT_N can be `#t', an integer, or a procedure.  `#t'
  3926.      means to cut away all frames up to but excluding the first user
  3927.      module frame.  An integer means to cut away exactly that number of
  3928.      frames.  A procedure means to cut away all frames up to but
  3929.      excluding the application frame whose procedure matches the
  3930.      specified one.
  3931.  
  3932.      Each OUTER_CUT_N can be an integer or a procedure.  An integer
  3933.      means to cut away that number of frames.  A procedure means to cut
  3934.      away frames down to but excluding the application frame whose
  3935.      procedure matches the specified one.
  3936.  
  3937.      If the OUTER_CUT_N of the last pair is missing, it is taken as 0.
  3938.  
  3939.     stack-id
  3940.  
  3941.  -- Scheme Procedure: stack-id stack
  3942.      Return the identifier given to STACK by `start-stack'.
  3943.  
  3944.     stack-ref
  3945.  
  3946.  -- Scheme Procedure: stack-ref stack index
  3947.      Return the INDEX'th frame from STACK.
  3948.  
  3949.     stack-length
  3950.  
  3951.  -- Scheme Procedure: stack-length stack
  3952.      Return the length of STACK.
  3953.  
  3954.     frame?
  3955.  
  3956.  -- Scheme Procedure: frame? obj
  3957.      Return `#t' if OBJ is a stack frame.
  3958.  
  3959.     last-stack-frame
  3960.  
  3961.  -- Scheme Procedure: last-stack-frame obj
  3962.      Return a stack which consists of a single frame, which is the last
  3963.      stack frame for OBJ. OBJ must be either a debug object or a
  3964.      continuation.
  3965.  
  3966.     frame-number
  3967.  
  3968.  -- Scheme Procedure: frame-number frame
  3969.      Return the frame number of FRAME.
  3970.  
  3971.     frame-source
  3972.  
  3973.  -- Scheme Procedure: frame-source frame
  3974.      Return the source of FRAME.
  3975.  
  3976.     frame-procedure
  3977.  
  3978.  -- Scheme Procedure: frame-procedure frame
  3979.      Return the procedure for FRAME, or `#f' if no procedure is
  3980.      associated with FRAME.
  3981.  
  3982.     frame-arguments
  3983.  
  3984.  -- Scheme Procedure: frame-arguments frame
  3985.      Return the arguments of FRAME.
  3986.  
  3987.     frame-previous
  3988.  
  3989.  -- Scheme Procedure: frame-previous frame
  3990.      Return the previous frame of FRAME, or `#f' if FRAME is the first
  3991.      frame in its stack.
  3992.  
  3993.     frame-next
  3994.  
  3995.  -- Scheme Procedure: frame-next frame
  3996.      Return the next frame of FRAME, or `#f' if FRAME is the last frame
  3997.      in its stack.
  3998.  
  3999.     frame-real?
  4000.  
  4001.  -- Scheme Procedure: frame-real? frame
  4002.      Return `#t' if FRAME is a real frame.
  4003.  
  4004.     frame-procedure?
  4005.  
  4006.  -- Scheme Procedure: frame-procedure? frame
  4007.      Return `#t' if a procedure is associated with FRAME.
  4008.  
  4009.     frame-evaluating-args?
  4010.  
  4011.  -- Scheme Procedure: frame-evaluating-args? frame
  4012.      Return `#t' if FRAME contains evaluated arguments.
  4013.  
  4014.     frame-overflow?
  4015.  
  4016.  -- Scheme Procedure: frame-overflow? frame
  4017.      Return `#t' if FRAME is an overflow frame.
  4018.  
  4019.     get-internal-real-time
  4020.  
  4021.  -- Scheme Procedure: get-internal-real-time
  4022.      Return the number of time units since the interpreter was started.
  4023.  
  4024.     times
  4025.  
  4026.  -- Scheme Procedure: times
  4027.      Return an object with information about real and processor time.
  4028.      The following procedures accept such an object as an argument and
  4029.      return a selected component:
  4030.  
  4031.     `tms:clock'
  4032.           The current real time, expressed as time units relative to an
  4033.           arbitrary base.
  4034.  
  4035.     `tms:utime'
  4036.           The CPU time units used by the calling process.
  4037.  
  4038.     `tms:stime'
  4039.           The CPU time units used by the system on behalf of the calling
  4040.           process.
  4041.  
  4042.     `tms:cutime'
  4043.           The CPU time units used by terminated child processes of the
  4044.           calling process, whose status has been collected (e.g., using
  4045.           `waitpid').
  4046.  
  4047.     `tms:cstime'
  4048.           Similarly, the CPU times units used by the system on behalf of
  4049.           terminated child processes.
  4050.  
  4051.     get-internal-run-time
  4052.  
  4053.  -- Scheme Procedure: get-internal-run-time
  4054.      Return the number of time units of processor time used by the
  4055.      interpreter.  Both _system_ and _user_ time are included but
  4056.      subprocesses are not.
  4057.  
  4058.     current-time
  4059.  
  4060.  -- Scheme Procedure: current-time
  4061.      Return the number of seconds since 1970-01-01 00:00:00 UTC,
  4062.      excluding leap seconds.
  4063.  
  4064.     gettimeofday
  4065.  
  4066.  -- Scheme Procedure: gettimeofday
  4067.      Return a pair containing the number of seconds and microseconds
  4068.      since 1970-01-01 00:00:00 UTC, excluding leap seconds.  Note:
  4069.      whether true microsecond resolution is available depends on the
  4070.      operating system.
  4071.  
  4072.     localtime
  4073.  
  4074.  -- Scheme Procedure: localtime time [zone]
  4075.      Return an object representing the broken down components of TIME,
  4076.      an integer like the one returned by `current-time'.  The time zone
  4077.      for the calculation is optionally specified by ZONE (a string),
  4078.      otherwise the `TZ' environment variable or the system default is
  4079.      used.
  4080.  
  4081.     gmtime
  4082.  
  4083.  -- Scheme Procedure: gmtime time
  4084.      Return an object representing the broken down components of TIME,
  4085.      an integer like the one returned by `current-time'.  The values
  4086.      are calculated for UTC.
  4087.  
  4088.     mktime
  4089.  
  4090.  -- Scheme Procedure: mktime sbd_time [zone]
  4091.      BD-TIME is an object representing broken down time and `zone' is
  4092.      an optional time zone specifier (otherwise the TZ environment
  4093.      variable or the system default is used).
  4094.  
  4095.      Returns a pair: the car is a corresponding integer time value like
  4096.      that returned by `current-time'; the cdr is a broken down time
  4097.      object, similar to as BD-TIME but with normalized values.
  4098.  
  4099.     tzset
  4100.  
  4101.  -- Scheme Procedure: tzset
  4102.      Initialize the timezone from the TZ environment variable or the
  4103.      system default.  It's not usually necessary to call this procedure
  4104.      since it's done automatically by other procedures that depend on
  4105.      the timezone.
  4106.  
  4107.     strftime
  4108.  
  4109.  -- Scheme Procedure: strftime format stime
  4110.      Return a string which is broken-down time structure STIME
  4111.      formatted according to the given FORMAT string.
  4112.  
  4113.      FORMAT contains field specifications introduced by a `%'
  4114.      character.  See *note Formatting Calendar Time: (libc)Formatting
  4115.      Calendar Time, or `man 3 strftime', for the available formatting.
  4116.  
  4117.           (strftime "%c" (localtime (current-time)))
  4118.           => "Mon Mar 11 20:17:43 2002"
  4119.  
  4120.      If `setlocale' has been called (*note Locales::), month and day
  4121.      names are from the current locale and in the locale character set.
  4122.  
  4123.     strptime
  4124.  
  4125.  -- Scheme Procedure: strptime format string
  4126.      Performs the reverse action to `strftime', parsing STRING
  4127.      according to the specification supplied in TEMPLATE.  The
  4128.      interpretation of month and day names is dependent on the current
  4129.      locale.  The value returned is a pair.  The car has an object with
  4130.      time components in the form returned by `localtime' or `gmtime',
  4131.      but the time zone components are not usefully set.  The cdr
  4132.      reports the number of characters from STRING which were used for
  4133.      the conversion.
  4134.  
  4135.     string?
  4136.  
  4137.  -- Scheme Procedure: string? obj
  4138.      Return `#t' if OBJ is a string, else `#f'.
  4139.  
  4140.     list->string
  4141.  
  4142.  -- Scheme Procedure: list->string
  4143.      implemented by the C function "scm_string"
  4144.  
  4145.     string
  4146.  
  4147.  -- Scheme Procedure: string . chrs
  4148.  -- Scheme Procedure: list->string chrs
  4149.      Return a newly allocated string composed of the arguments, CHRS.
  4150.  
  4151.     make-string
  4152.  
  4153.  -- Scheme Procedure: make-string k [chr]
  4154.      Return a newly allocated string of length K.  If CHR is given,
  4155.      then all elements of the string are initialized to CHR, otherwise
  4156.      the contents of the STRING are unspecified.
  4157.  
  4158.     string-length
  4159.  
  4160.  -- Scheme Procedure: string-length string
  4161.      Return the number of characters in STRING.
  4162.  
  4163.     string-ref
  4164.  
  4165.  -- Scheme Procedure: string-ref str k
  4166.      Return character K of STR using zero-origin indexing. K must be a
  4167.      valid index of STR.
  4168.  
  4169.     string-set!
  4170.  
  4171.  -- Scheme Procedure: string-set! str k chr
  4172.      Store CHR in element K of STR and return an unspecified value. K
  4173.      must be a valid index of STR.
  4174.  
  4175.     substring
  4176.  
  4177.  -- Scheme Procedure: substring str start [end]
  4178.      Return a newly allocated string formed from the characters of STR
  4179.      beginning with index START (inclusive) and ending with index END
  4180.      (exclusive).  STR must be a string, START and END must be exact
  4181.      integers satisfying:
  4182.  
  4183.      0 <= START <= END <= (string-length STR).
  4184.  
  4185.     substring/read-only
  4186.  
  4187.  -- Scheme Procedure: substring/read-only str start [end]
  4188.      Return a newly allocated string formed from the characters of STR
  4189.      beginning with index START (inclusive) and ending with index END
  4190.      (exclusive).  STR must be a string, START and END must be exact
  4191.      integers satisfying:
  4192.  
  4193.      0 <= START <= END <= (string-length STR).
  4194.  
  4195.      The returned string is read-only.
  4196.  
  4197.  
  4198.     substring/copy
  4199.  
  4200.  -- Scheme Procedure: substring/copy str start [end]
  4201.      Return a newly allocated string formed from the characters of STR
  4202.      beginning with index START (inclusive) and ending with index END
  4203.      (exclusive).  STR must be a string, START and END must be exact
  4204.      integers satisfying:
  4205.  
  4206.      0 <= START <= END <= (string-length STR).
  4207.  
  4208.     substring/shared
  4209.  
  4210.  -- Scheme Procedure: substring/shared str start [end]
  4211.      Return string that indirectly refers to the characters of STR
  4212.      beginning with index START (inclusive) and ending with index END
  4213.      (exclusive).  STR must be a string, START and END must be exact
  4214.      integers satisfying:
  4215.  
  4216.      0 <= START <= END <= (string-length STR).
  4217.  
  4218.     string-append
  4219.  
  4220.  -- Scheme Procedure: string-append . args
  4221.      Return a newly allocated string whose characters form the
  4222.      concatenation of the given strings, ARGS.
  4223.  
  4224.     uniform-vector?
  4225.  
  4226.  -- Scheme Procedure: uniform-vector? obj
  4227.      Return `#t' if OBJ is a uniform vector.
  4228.  
  4229.     uniform-vector-ref
  4230.  
  4231.  -- Scheme Procedure: uniform-vector-ref v idx
  4232.      Return the element at index IDX of the homogenous numeric vector V.
  4233.  
  4234.     uniform-vector-set!
  4235.  
  4236.  -- Scheme Procedure: uniform-vector-set! v idx val
  4237.      Set the element at index IDX of the homogenous numeric vector V to
  4238.      VAL.
  4239.  
  4240.     uniform-vector->list
  4241.  
  4242.  -- Scheme Procedure: uniform-vector->list uvec
  4243.      Convert the uniform numeric vector UVEC to a list.
  4244.  
  4245.     uniform-vector-length
  4246.  
  4247.  -- Scheme Procedure: uniform-vector-length v
  4248.      Return the number of elements in the uniform vector V.
  4249.  
  4250.     uniform-vector-read!
  4251.  
  4252.  -- Scheme Procedure: uniform-vector-read! uvec [port_or_fd [start
  4253.           [end]]]
  4254.      Fill the elements of UVEC by reading raw bytes from PORT-OR-FDES,
  4255.      using host byte order.
  4256.  
  4257.      The optional arguments START (inclusive) and END (exclusive) allow
  4258.      a specified region to be read, leaving the remainder of the vector
  4259.      unchanged.
  4260.  
  4261.      When PORT-OR-FDES is a port, all specified elements of UVEC are
  4262.      attempted to be read, potentially blocking while waiting formore
  4263.      input or end-of-file.  When PORT-OR-FD is an integer, a single
  4264.      call to read(2) is made.
  4265.  
  4266.      An error is signalled when the last element has only been
  4267.      partially filled before reaching end-of-file or in the single call
  4268.      to read(2).
  4269.  
  4270.      `uniform-vector-read!' returns the number of elements read.
  4271.  
  4272.      PORT-OR-FDES may be omitted, in which case it defaults to the
  4273.      value returned by `(current-input-port)'.
  4274.  
  4275.     uniform-vector-write
  4276.  
  4277.  -- Scheme Procedure: uniform-vector-write uvec [port_or_fd [start
  4278.           [end]]]
  4279.      Write the elements of UVEC as raw bytes to PORT-OR-FDES, in the
  4280.      host byte order.
  4281.  
  4282.      The optional arguments START (inclusive) and END (exclusive) allow
  4283.      a specified region to be written.
  4284.  
  4285.      When PORT-OR-FDES is a port, all specified elements of UVEC are
  4286.      attempted to be written, potentially blocking while waiting for
  4287.      more room.  When PORT-OR-FD is an integer, a single call to
  4288.      write(2) is made.
  4289.  
  4290.      An error is signalled when the last element has only been
  4291.      partially written in the single call to write(2).
  4292.  
  4293.      The number of objects actually written is returned.  PORT-OR-FDES
  4294.      may be omitted, in which case it defaults to the value returned by
  4295.      `(current-output-port)'.
  4296.  
  4297.     u8vector?
  4298.  
  4299.  -- Scheme Procedure: u8vector? obj
  4300.      Return `#t' if OBJ is a vector of type u8, `#f' otherwise.
  4301.  
  4302.     make-u8vector
  4303.  
  4304.  -- Scheme Procedure: make-u8vector len [fill]
  4305.      Return a newly allocated uniform numeric vector which can hold LEN
  4306.      elements.  If FILL is given, it is used to initialize the
  4307.      elements, otherwise the contents of the vector is unspecified.
  4308.  
  4309.     u8vector
  4310.  
  4311.  -- Scheme Procedure: u8vector . l
  4312.      Return a newly allocated uniform numeric vector containing all
  4313.      argument values.
  4314.  
  4315.     u8vector-length
  4316.  
  4317.  -- Scheme Procedure: u8vector-length uvec
  4318.      Return the number of elements in the uniform numeric vector UVEC.
  4319.  
  4320.     u8vector-ref
  4321.  
  4322.  -- Scheme Procedure: u8vector-ref uvec index
  4323.      Return the element at INDEX in the uniform numeric vector UVEC.
  4324.  
  4325.     u8vector-set!
  4326.  
  4327.  -- Scheme Procedure: u8vector-set! uvec index value
  4328.      Set the element at INDEX in the uniform numeric vector UVEC to
  4329.      VALUE.  The return value is not specified.
  4330.  
  4331.     u8vector->list
  4332.  
  4333.  -- Scheme Procedure: u8vector->list uvec
  4334.      Convert the uniform numeric vector UVEC to a list.
  4335.  
  4336.     list->u8vector
  4337.  
  4338.  -- Scheme Procedure: list->u8vector l
  4339.      Convert the list L to a numeric uniform vector.
  4340.  
  4341.     any->u8vector
  4342.  
  4343.  -- Scheme Procedure: any->u8vector obj
  4344.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4345.      numeric uniform vector of type u8.
  4346.  
  4347.     s8vector?
  4348.  
  4349.  -- Scheme Procedure: s8vector? obj
  4350.      Return `#t' if OBJ is a vector of type s8, `#f' otherwise.
  4351.  
  4352.     make-s8vector
  4353.  
  4354.  -- Scheme Procedure: make-s8vector len [fill]
  4355.      Return a newly allocated uniform numeric vector which can hold LEN
  4356.      elements.  If FILL is given, it is used to initialize the
  4357.      elements, otherwise the contents of the vector is unspecified.
  4358.  
  4359.     s8vector
  4360.  
  4361.  -- Scheme Procedure: s8vector . l
  4362.      Return a newly allocated uniform numeric vector containing all
  4363.      argument values.
  4364.  
  4365.     s8vector-length
  4366.  
  4367.  -- Scheme Procedure: s8vector-length uvec
  4368.      Return the number of elements in the uniform numeric vector UVEC.
  4369.  
  4370.     s8vector-ref
  4371.  
  4372.  -- Scheme Procedure: s8vector-ref uvec index
  4373.      Return the element at INDEX in the uniform numeric vector UVEC.
  4374.  
  4375.     s8vector-set!
  4376.  
  4377.  -- Scheme Procedure: s8vector-set! uvec index value
  4378.      Set the element at INDEX in the uniform numeric vector UVEC to
  4379.      VALUE.  The return value is not specified.
  4380.  
  4381.     s8vector->list
  4382.  
  4383.  -- Scheme Procedure: s8vector->list uvec
  4384.      Convert the uniform numeric vector UVEC to a list.
  4385.  
  4386.     list->s8vector
  4387.  
  4388.  -- Scheme Procedure: list->s8vector l
  4389.      Convert the list L to a numeric uniform vector.
  4390.  
  4391.     any->s8vector
  4392.  
  4393.  -- Scheme Procedure: any->s8vector obj
  4394.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4395.      numeric uniform vector of type s8.
  4396.  
  4397.     u16vector?
  4398.  
  4399.  -- Scheme Procedure: u16vector? obj
  4400.      Return `#t' if OBJ is a vector of type u16, `#f' otherwise.
  4401.  
  4402.     make-u16vector
  4403.  
  4404.  -- Scheme Procedure: make-u16vector len [fill]
  4405.      Return a newly allocated uniform numeric vector which can hold LEN
  4406.      elements.  If FILL is given, it is used to initialize the
  4407.      elements, otherwise the contents of the vector is unspecified.
  4408.  
  4409.     u16vector
  4410.  
  4411.  -- Scheme Procedure: u16vector . l
  4412.      Return a newly allocated uniform numeric vector containing all
  4413.      argument values.
  4414.  
  4415.     u16vector-length
  4416.  
  4417.  -- Scheme Procedure: u16vector-length uvec
  4418.      Return the number of elements in the uniform numeric vector UVEC.
  4419.  
  4420.     u16vector-ref
  4421.  
  4422.  -- Scheme Procedure: u16vector-ref uvec index
  4423.      Return the element at INDEX in the uniform numeric vector UVEC.
  4424.  
  4425.     u16vector-set!
  4426.  
  4427.  -- Scheme Procedure: u16vector-set! uvec index value
  4428.      Set the element at INDEX in the uniform numeric vector UVEC to
  4429.      VALUE.  The return value is not specified.
  4430.  
  4431.     u16vector->list
  4432.  
  4433.  -- Scheme Procedure: u16vector->list uvec
  4434.      Convert the uniform numeric vector UVEC to a list.
  4435.  
  4436.     list->u16vector
  4437.  
  4438.  -- Scheme Procedure: list->u16vector l
  4439.      Convert the list L to a numeric uniform vector.
  4440.  
  4441.     any->u16vector
  4442.  
  4443.  -- Scheme Procedure: any->u16vector obj
  4444.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4445.      numeric uniform vector of type u16.
  4446.  
  4447.     s16vector?
  4448.  
  4449.  -- Scheme Procedure: s16vector? obj
  4450.      Return `#t' if OBJ is a vector of type s16, `#f' otherwise.
  4451.  
  4452.     make-s16vector
  4453.  
  4454.  -- Scheme Procedure: make-s16vector len [fill]
  4455.      Return a newly allocated uniform numeric vector which can hold LEN
  4456.      elements.  If FILL is given, it is used to initialize the
  4457.      elements, otherwise the contents of the vector is unspecified.
  4458.  
  4459.     s16vector
  4460.  
  4461.  -- Scheme Procedure: s16vector . l
  4462.      Return a newly allocated uniform numeric vector containing all
  4463.      argument values.
  4464.  
  4465.     s16vector-length
  4466.  
  4467.  -- Scheme Procedure: s16vector-length uvec
  4468.      Return the number of elements in the uniform numeric vector UVEC.
  4469.  
  4470.     s16vector-ref
  4471.  
  4472.  -- Scheme Procedure: s16vector-ref uvec index
  4473.      Return the element at INDEX in the uniform numeric vector UVEC.
  4474.  
  4475.     s16vector-set!
  4476.  
  4477.  -- Scheme Procedure: s16vector-set! uvec index value
  4478.      Set the element at INDEX in the uniform numeric vector UVEC to
  4479.      VALUE.  The return value is not specified.
  4480.  
  4481.     s16vector->list
  4482.  
  4483.  -- Scheme Procedure: s16vector->list uvec
  4484.      Convert the uniform numeric vector UVEC to a list.
  4485.  
  4486.     list->s16vector
  4487.  
  4488.  -- Scheme Procedure: list->s16vector l
  4489.      Convert the list L to a numeric uniform vector.
  4490.  
  4491.     any->s16vector
  4492.  
  4493.  -- Scheme Procedure: any->s16vector obj
  4494.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4495.      numeric uniform vector of type s16.
  4496.  
  4497.     u32vector?
  4498.  
  4499.  -- Scheme Procedure: u32vector? obj
  4500.      Return `#t' if OBJ is a vector of type u32, `#f' otherwise.
  4501.  
  4502.     make-u32vector
  4503.  
  4504.  -- Scheme Procedure: make-u32vector len [fill]
  4505.      Return a newly allocated uniform numeric vector which can hold LEN
  4506.      elements.  If FILL is given, it is used to initialize the
  4507.      elements, otherwise the contents of the vector is unspecified.
  4508.  
  4509.     u32vector
  4510.  
  4511.  -- Scheme Procedure: u32vector . l
  4512.      Return a newly allocated uniform numeric vector containing all
  4513.      argument values.
  4514.  
  4515.     u32vector-length
  4516.  
  4517.  -- Scheme Procedure: u32vector-length uvec
  4518.      Return the number of elements in the uniform numeric vector UVEC.
  4519.  
  4520.     u32vector-ref
  4521.  
  4522.  -- Scheme Procedure: u32vector-ref uvec index
  4523.      Return the element at INDEX in the uniform numeric vector UVEC.
  4524.  
  4525.     u32vector-set!
  4526.  
  4527.  -- Scheme Procedure: u32vector-set! uvec index value
  4528.      Set the element at INDEX in the uniform numeric vector UVEC to
  4529.      VALUE.  The return value is not specified.
  4530.  
  4531.     u32vector->list
  4532.  
  4533.  -- Scheme Procedure: u32vector->list uvec
  4534.      Convert the uniform numeric vector UVEC to a list.
  4535.  
  4536.     list->u32vector
  4537.  
  4538.  -- Scheme Procedure: list->u32vector l
  4539.      Convert the list L to a numeric uniform vector.
  4540.  
  4541.     any->u32vector
  4542.  
  4543.  -- Scheme Procedure: any->u32vector obj
  4544.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4545.      numeric uniform vector of type u32.
  4546.  
  4547.     s32vector?
  4548.  
  4549.  -- Scheme Procedure: s32vector? obj
  4550.      Return `#t' if OBJ is a vector of type s32, `#f' otherwise.
  4551.  
  4552.     make-s32vector
  4553.  
  4554.  -- Scheme Procedure: make-s32vector len [fill]
  4555.      Return a newly allocated uniform numeric vector which can hold LEN
  4556.      elements.  If FILL is given, it is used to initialize the
  4557.      elements, otherwise the contents of the vector is unspecified.
  4558.  
  4559.     s32vector
  4560.  
  4561.  -- Scheme Procedure: s32vector . l
  4562.      Return a newly allocated uniform numeric vector containing all
  4563.      argument values.
  4564.  
  4565.     s32vector-length
  4566.  
  4567.  -- Scheme Procedure: s32vector-length uvec
  4568.      Return the number of elements in the uniform numeric vector UVEC.
  4569.  
  4570.     s32vector-ref
  4571.  
  4572.  -- Scheme Procedure: s32vector-ref uvec index
  4573.      Return the element at INDEX in the uniform numeric vector UVEC.
  4574.  
  4575.     s32vector-set!
  4576.  
  4577.  -- Scheme Procedure: s32vector-set! uvec index value
  4578.      Set the element at INDEX in the uniform numeric vector UVEC to
  4579.      VALUE.  The return value is not specified.
  4580.  
  4581.     s32vector->list
  4582.  
  4583.  -- Scheme Procedure: s32vector->list uvec
  4584.      Convert the uniform numeric vector UVEC to a list.
  4585.  
  4586.     list->s32vector
  4587.  
  4588.  -- Scheme Procedure: list->s32vector l
  4589.      Convert the list L to a numeric uniform vector.
  4590.  
  4591.     any->s32vector
  4592.  
  4593.  -- Scheme Procedure: any->s32vector obj
  4594.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4595.      numeric uniform vector of type s32.
  4596.  
  4597.     u64vector?
  4598.  
  4599.  -- Scheme Procedure: u64vector? obj
  4600.      Return `#t' if OBJ is a vector of type u64, `#f' otherwise.
  4601.  
  4602.     make-u64vector
  4603.  
  4604.  -- Scheme Procedure: make-u64vector len [fill]
  4605.      Return a newly allocated uniform numeric vector which can hold LEN
  4606.      elements.  If FILL is given, it is used to initialize the
  4607.      elements, otherwise the contents of the vector is unspecified.
  4608.  
  4609.     u64vector
  4610.  
  4611.  -- Scheme Procedure: u64vector . l
  4612.      Return a newly allocated uniform numeric vector containing all
  4613.      argument values.
  4614.  
  4615.     u64vector-length
  4616.  
  4617.  -- Scheme Procedure: u64vector-length uvec
  4618.      Return the number of elements in the uniform numeric vector UVEC.
  4619.  
  4620.     u64vector-ref
  4621.  
  4622.  -- Scheme Procedure: u64vector-ref uvec index
  4623.      Return the element at INDEX in the uniform numeric vector UVEC.
  4624.  
  4625.     u64vector-set!
  4626.  
  4627.  -- Scheme Procedure: u64vector-set! uvec index value
  4628.      Set the element at INDEX in the uniform numeric vector UVEC to
  4629.      VALUE.  The return value is not specified.
  4630.  
  4631.     u64vector->list
  4632.  
  4633.  -- Scheme Procedure: u64vector->list uvec
  4634.      Convert the uniform numeric vector UVEC to a list.
  4635.  
  4636.     list->u64vector
  4637.  
  4638.  -- Scheme Procedure: list->u64vector l
  4639.      Convert the list L to a numeric uniform vector.
  4640.  
  4641.     any->u64vector
  4642.  
  4643.  -- Scheme Procedure: any->u64vector obj
  4644.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4645.      numeric uniform vector of type u64.
  4646.  
  4647.     s64vector?
  4648.  
  4649.  -- Scheme Procedure: s64vector? obj
  4650.      Return `#t' if OBJ is a vector of type s64, `#f' otherwise.
  4651.  
  4652.     make-s64vector
  4653.  
  4654.  -- Scheme Procedure: make-s64vector len [fill]
  4655.      Return a newly allocated uniform numeric vector which can hold LEN
  4656.      elements.  If FILL is given, it is used to initialize the
  4657.      elements, otherwise the contents of the vector is unspecified.
  4658.  
  4659.     s64vector
  4660.  
  4661.  -- Scheme Procedure: s64vector . l
  4662.      Return a newly allocated uniform numeric vector containing all
  4663.      argument values.
  4664.  
  4665.     s64vector-length
  4666.  
  4667.  -- Scheme Procedure: s64vector-length uvec
  4668.      Return the number of elements in the uniform numeric vector UVEC.
  4669.  
  4670.     s64vector-ref
  4671.  
  4672.  -- Scheme Procedure: s64vector-ref uvec index
  4673.      Return the element at INDEX in the uniform numeric vector UVEC.
  4674.  
  4675.     s64vector-set!
  4676.  
  4677.  -- Scheme Procedure: s64vector-set! uvec index value
  4678.      Set the element at INDEX in the uniform numeric vector UVEC to
  4679.      VALUE.  The return value is not specified.
  4680.  
  4681.     s64vector->list
  4682.  
  4683.  -- Scheme Procedure: s64vector->list uvec
  4684.      Convert the uniform numeric vector UVEC to a list.
  4685.  
  4686.     list->s64vector
  4687.  
  4688.  -- Scheme Procedure: list->s64vector l
  4689.      Convert the list L to a numeric uniform vector.
  4690.  
  4691.     any->s64vector
  4692.  
  4693.  -- Scheme Procedure: any->s64vector obj
  4694.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4695.      numeric uniform vector of type s64.
  4696.  
  4697.     f32vector?
  4698.  
  4699.  -- Scheme Procedure: f32vector? obj
  4700.      Return `#t' if OBJ is a vector of type f32, `#f' otherwise.
  4701.  
  4702.     make-f32vector
  4703.  
  4704.  -- Scheme Procedure: make-f32vector len [fill]
  4705.      Return a newly allocated uniform numeric vector which can hold LEN
  4706.      elements.  If FILL is given, it is used to initialize the
  4707.      elements, otherwise the contents of the vector is unspecified.
  4708.  
  4709.     f32vector
  4710.  
  4711.  -- Scheme Procedure: f32vector . l
  4712.      Return a newly allocated uniform numeric vector containing all
  4713.      argument values.
  4714.  
  4715.     f32vector-length
  4716.  
  4717.  -- Scheme Procedure: f32vector-length uvec
  4718.      Return the number of elements in the uniform numeric vector UVEC.
  4719.  
  4720.     f32vector-ref
  4721.  
  4722.  -- Scheme Procedure: f32vector-ref uvec index
  4723.      Return the element at INDEX in the uniform numeric vector UVEC.
  4724.  
  4725.     f32vector-set!
  4726.  
  4727.  -- Scheme Procedure: f32vector-set! uvec index value
  4728.      Set the element at INDEX in the uniform numeric vector UVEC to
  4729.      VALUE.  The return value is not specified.
  4730.  
  4731.     f32vector->list
  4732.  
  4733.  -- Scheme Procedure: f32vector->list uvec
  4734.      Convert the uniform numeric vector UVEC to a list.
  4735.  
  4736.     list->f32vector
  4737.  
  4738.  -- Scheme Procedure: list->f32vector l
  4739.      Convert the list L to a numeric uniform vector.
  4740.  
  4741.     any->f32vector
  4742.  
  4743.  -- Scheme Procedure: any->f32vector obj
  4744.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4745.      numeric uniform vector of type f32.
  4746.  
  4747.     f64vector?
  4748.  
  4749.  -- Scheme Procedure: f64vector? obj
  4750.      Return `#t' if OBJ is a vector of type f64, `#f' otherwise.
  4751.  
  4752.     make-f64vector
  4753.  
  4754.  -- Scheme Procedure: make-f64vector len [fill]
  4755.      Return a newly allocated uniform numeric vector which can hold LEN
  4756.      elements.  If FILL is given, it is used to initialize the
  4757.      elements, otherwise the contents of the vector is unspecified.
  4758.  
  4759.     f64vector
  4760.  
  4761.  -- Scheme Procedure: f64vector . l
  4762.      Return a newly allocated uniform numeric vector containing all
  4763.      argument values.
  4764.  
  4765.     f64vector-length
  4766.  
  4767.  -- Scheme Procedure: f64vector-length uvec
  4768.      Return the number of elements in the uniform numeric vector UVEC.
  4769.  
  4770.     f64vector-ref
  4771.  
  4772.  -- Scheme Procedure: f64vector-ref uvec index
  4773.      Return the element at INDEX in the uniform numeric vector UVEC.
  4774.  
  4775.     f64vector-set!
  4776.  
  4777.  -- Scheme Procedure: f64vector-set! uvec index value
  4778.      Set the element at INDEX in the uniform numeric vector UVEC to
  4779.      VALUE.  The return value is not specified.
  4780.  
  4781.     f64vector->list
  4782.  
  4783.  -- Scheme Procedure: f64vector->list uvec
  4784.      Convert the uniform numeric vector UVEC to a list.
  4785.  
  4786.     list->f64vector
  4787.  
  4788.  -- Scheme Procedure: list->f64vector l
  4789.      Convert the list L to a numeric uniform vector.
  4790.  
  4791.     any->f64vector
  4792.  
  4793.  -- Scheme Procedure: any->f64vector obj
  4794.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4795.      numeric uniform vector of type f64.
  4796.  
  4797.     c32vector?
  4798.  
  4799.  -- Scheme Procedure: c32vector? obj
  4800.      Return `#t' if OBJ is a vector of type c32, `#f' otherwise.
  4801.  
  4802.     make-c32vector
  4803.  
  4804.  -- Scheme Procedure: make-c32vector len [fill]
  4805.      Return a newly allocated uniform numeric vector which can hold LEN
  4806.      elements.  If FILL is given, it is used to initialize the
  4807.      elements, otherwise the contents of the vector is unspecified.
  4808.  
  4809.     c32vector
  4810.  
  4811.  -- Scheme Procedure: c32vector . l
  4812.      Return a newly allocated uniform numeric vector containing all
  4813.      argument values.
  4814.  
  4815.     c32vector-length
  4816.  
  4817.  -- Scheme Procedure: c32vector-length uvec
  4818.      Return the number of elements in the uniform numeric vector UVEC.
  4819.  
  4820.     c32vector-ref
  4821.  
  4822.  -- Scheme Procedure: c32vector-ref uvec index
  4823.      Return the element at INDEX in the uniform numeric vector UVEC.
  4824.  
  4825.     c32vector-set!
  4826.  
  4827.  -- Scheme Procedure: c32vector-set! uvec index value
  4828.      Set the element at INDEX in the uniform numeric vector UVEC to
  4829.      VALUE.  The return value is not specified.
  4830.  
  4831.     c32vector->list
  4832.  
  4833.  -- Scheme Procedure: c32vector->list uvec
  4834.      Convert the uniform numeric vector UVEC to a list.
  4835.  
  4836.     list->c32vector
  4837.  
  4838.  -- Scheme Procedure: list->c32vector l
  4839.      Convert the list L to a numeric uniform vector.
  4840.  
  4841.     any->c32vector
  4842.  
  4843.  -- Scheme Procedure: any->c32vector obj
  4844.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4845.      numeric uniform vector of type c32.
  4846.  
  4847.     c64vector?
  4848.  
  4849.  -- Scheme Procedure: c64vector? obj
  4850.      Return `#t' if OBJ is a vector of type c64, `#f' otherwise.
  4851.  
  4852.     make-c64vector
  4853.  
  4854.  -- Scheme Procedure: make-c64vector len [fill]
  4855.      Return a newly allocated uniform numeric vector which can hold LEN
  4856.      elements.  If FILL is given, it is used to initialize the
  4857.      elements, otherwise the contents of the vector is unspecified.
  4858.  
  4859.     c64vector
  4860.  
  4861.  -- Scheme Procedure: c64vector . l
  4862.      Return a newly allocated uniform numeric vector containing all
  4863.      argument values.
  4864.  
  4865.     c64vector-length
  4866.  
  4867.  -- Scheme Procedure: c64vector-length uvec
  4868.      Return the number of elements in the uniform numeric vector UVEC.
  4869.  
  4870.     c64vector-ref
  4871.  
  4872.  -- Scheme Procedure: c64vector-ref uvec index
  4873.      Return the element at INDEX in the uniform numeric vector UVEC.
  4874.  
  4875.     c64vector-set!
  4876.  
  4877.  -- Scheme Procedure: c64vector-set! uvec index value
  4878.      Set the element at INDEX in the uniform numeric vector UVEC to
  4879.      VALUE.  The return value is not specified.
  4880.  
  4881.     c64vector->list
  4882.  
  4883.  -- Scheme Procedure: c64vector->list uvec
  4884.      Convert the uniform numeric vector UVEC to a list.
  4885.  
  4886.     list->c64vector
  4887.  
  4888.  -- Scheme Procedure: list->c64vector l
  4889.      Convert the list L to a numeric uniform vector.
  4890.  
  4891.     any->c64vector
  4892.  
  4893.  -- Scheme Procedure: any->c64vector obj
  4894.      Convert OBJ, which can be a list, vector, or uniform vector, to a
  4895.      numeric uniform vector of type c64.
  4896.  
  4897.     string-null?
  4898.  
  4899.  -- Scheme Procedure: string-null? str
  4900.      Return `#t' if STR's length is zero, and `#f' otherwise.
  4901.           (string-null? "")  => #t
  4902.           y                    => "foo"
  4903.           (string-null? y)     => #f
  4904.  
  4905.     string-any-c-code
  4906.  
  4907.  -- Scheme Procedure: string-any-c-code char_pred s [start [end]]
  4908.      Check if CHAR_PRED is true for any character in string S.
  4909.  
  4910.      CHAR_PRED can be a character to check for any equal to that, or a
  4911.      character set (*note Character Sets::) to check for any in that
  4912.      set, or a predicate procedure to call.
  4913.  
  4914.      For a procedure, calls `(CHAR_PRED c)' are made successively on
  4915.      the characters from START to END.  If CHAR_PRED returns true (ie.
  4916.      non-`#f'), `string-any' stops and that return value is the return
  4917.      from `string-any'.  The call on the last character (ie. at END-1),
  4918.      if that point is reached, is a tail call.
  4919.  
  4920.      If there are no characters in S (ie. START equals END) then the
  4921.      return is `#f'.
  4922.  
  4923.  
  4924.     string-every-c-code
  4925.  
  4926.  -- Scheme Procedure: string-every-c-code char_pred s [start [end]]
  4927.      Check if CHAR_PRED is true for every character in string S.
  4928.  
  4929.      CHAR_PRED can be a character to check for every character equal to
  4930.      that, or a character set (*note Character Sets::) to check for
  4931.      every character being in that set, or a predicate procedure to
  4932.      call.
  4933.  
  4934.      For a procedure, calls `(CHAR_PRED c)' are made successively on
  4935.      the characters from START to END.  If CHAR_PRED returns `#f',
  4936.      `string-every' stops and returns `#f'.  The call on the last
  4937.      character (ie. at END-1), if that point is reached, is a tail call
  4938.      and the return from that call is the return from `string-every'.
  4939.  
  4940.      If there are no characters in S (ie. START equals END) then the
  4941.      return is `#t'.
  4942.  
  4943.  
  4944.     string-tabulate
  4945.  
  4946.  -- Scheme Procedure: string-tabulate proc len
  4947.      PROC is an integer->char procedure.  Construct a string of size
  4948.      LEN by applying PROC to each index to produce the corresponding
  4949.      string element.  The order in which PROC is applied to the indices
  4950.      is not specified.
  4951.  
  4952.     string->list
  4953.  
  4954.  -- Scheme Procedure: string->list str [start [end]]
  4955.      Convert the string STR into a list of characters.
  4956.  
  4957.     reverse-list->string
  4958.  
  4959.  -- Scheme Procedure: reverse-list->string chrs
  4960.      An efficient implementation of `(compose string->list reverse)':
  4961.  
  4962.           (reverse-list->string '(#\a #\B #\c)) => "cBa"
  4963.  
  4964.     string-join
  4965.  
  4966.  -- Scheme Procedure: string-join ls [delimiter [grammar]]
  4967.      Append the string in the string list LS, using the string DELIM as
  4968.      a delimiter between the elements of LS.  GRAMMAR is a symbol which
  4969.      specifies how the delimiter is placed between the strings, and
  4970.      defaults to the symbol `infix'.
  4971.  
  4972.     `infix'
  4973.           Insert the separator between list elements.  An empty string
  4974.           will produce an empty list.
  4975.  
  4976.     `string-infix'
  4977.           Like `infix', but will raise an error if given the empty list.
  4978.  
  4979.     `suffix'
  4980.           Insert the separator after every list element.
  4981.  
  4982.     `prefix'
  4983.           Insert the separator before each list element.
  4984.  
  4985.     string-copy
  4986.  
  4987.  -- Scheme Procedure: string-copy str [start [end]]
  4988.      Return a freshly allocated copy of the string STR.  If given,
  4989.      START and END delimit the portion of STR which is copied.
  4990.  
  4991.     string-copy!
  4992.  
  4993.  -- Scheme Procedure: string-copy! target tstart s [start [end]]
  4994.      Copy the sequence of characters from index range [START, END) in
  4995.      string S to string TARGET, beginning at index TSTART.  The
  4996.      characters are copied left-to-right or right-to-left as needed -
  4997.      the copy is guaranteed to work, even if TARGET and S are the same
  4998.      string.  It is an error if the copy operation runs off the end of
  4999.      the target string.
  5000.  
  5001.     substring-move!
  5002.  
  5003.  -- Scheme Procedure: substring-move! str1 start1 end1 str2 start2
  5004.      Copy the substring of STR1 bounded by START1 and END1 into STR2
  5005.      beginning at position START2.  STR1 and STR2 can be the same
  5006.      string.
  5007.  
  5008.     string-take
  5009.  
  5010.  -- Scheme Procedure: string-take s n
  5011.      Return the N first characters of S.
  5012.  
  5013.     string-drop
  5014.  
  5015.  -- Scheme Procedure: string-drop s n
  5016.      Return all but the first N characters of S.
  5017.  
  5018.     string-take-right
  5019.  
  5020.  -- Scheme Procedure: string-take-right s n
  5021.      Return the N last characters of S.
  5022.  
  5023.     string-drop-right
  5024.  
  5025.  -- Scheme Procedure: string-drop-right s n
  5026.      Return all but the last N characters of S.
  5027.  
  5028.     string-pad
  5029.  
  5030.  -- Scheme Procedure: string-pad s len [chr [start [end]]]
  5031.      Take that characters from START to END from the string S and
  5032.      return a new string, right-padded by the character CHR to length
  5033.      LEN.  If the resulting string is longer than LEN, it is truncated
  5034.      on the right.
  5035.  
  5036.     string-pad-right
  5037.  
  5038.  -- Scheme Procedure: string-pad-right s len [chr [start [end]]]
  5039.      Take that characters from START to END from the string S and
  5040.      return a new string, left-padded by the character CHR to length
  5041.      LEN.  If the resulting string is longer than LEN, it is truncated
  5042.      on the left.
  5043.  
  5044.     string-trim
  5045.  
  5046.  -- Scheme Procedure: string-trim s [char_pred [start [end]]]
  5047.      Trim S by skipping over all characters on the left that satisfy
  5048.      the parameter CHAR_PRED:
  5049.  
  5050.         * if it is the character CH, characters equal to CH are trimmed,
  5051.  
  5052.         * if it is a procedure PRED characters that satisfy PRED are
  5053.           trimmed,
  5054.  
  5055.         * if it is a character set, characters in that set are trimmed.
  5056.  
  5057.      If called without a CHAR_PRED argument, all whitespace is trimmed.
  5058.  
  5059.     string-trim-right
  5060.  
  5061.  -- Scheme Procedure: string-trim-right s [char_pred [start [end]]]
  5062.      Trim S by skipping over all characters on the rightt that satisfy
  5063.      the parameter CHAR_PRED:
  5064.  
  5065.         * if it is the character CH, characters equal to CH are trimmed,
  5066.  
  5067.         * if it is a procedure PRED characters that satisfy PRED are
  5068.           trimmed,
  5069.  
  5070.         * if it is a character sets, all characters in that set are
  5071.           trimmed.
  5072.  
  5073.      If called without a CHAR_PRED argument, all whitespace is trimmed.
  5074.  
  5075.     string-trim-both
  5076.  
  5077.  -- Scheme Procedure: string-trim-both s [char_pred [start [end]]]
  5078.      Trim S by skipping over all characters on both sides of the string
  5079.      that satisfy the parameter CHAR_PRED:
  5080.  
  5081.         * if it is the character CH, characters equal to CH are trimmed,
  5082.  
  5083.         * if it is a procedure PRED characters that satisfy PRED are
  5084.           trimmed,
  5085.  
  5086.         * if it is a character set, the characters in the set are
  5087.           trimmed.
  5088.  
  5089.      If called without a CHAR_PRED argument, all whitespace is trimmed.
  5090.  
  5091.     string-fill!
  5092.  
  5093.  -- Scheme Procedure: string-fill! str chr [start [end]]
  5094.      Stores CHR in every element of the given STR and returns an
  5095.      unspecified value.
  5096.  
  5097.     string-compare
  5098.  
  5099.  -- Scheme Procedure: string-compare s1 s2 proc_lt proc_eq proc_gt
  5100.           [start1 [end1 [start2 [end2]]]]
  5101.      Apply PROC_LT, PROC_EQ, PROC_GT to the mismatch index, depending
  5102.      upon whether S1 is less than, equal to, or greater than S2.  The
  5103.      mismatch index is the largest index I such that for every 0 <= J <
  5104.      I, S1[J] = S2[J] - that is, I is the first position that does not
  5105.      match.
  5106.  
  5107.     string-compare-ci
  5108.  
  5109.  -- Scheme Procedure: string-compare-ci s1 s2 proc_lt proc_eq proc_gt
  5110.           [start1 [end1 [start2 [end2]]]]
  5111.      Apply PROC_LT, PROC_EQ, PROC_GT to the mismatch index, depending
  5112.      upon whether S1 is less than, equal to, or greater than S2.  The
  5113.      mismatch index is the largest index I such that for every 0 <= J <
  5114.      I, S1[J] = S2[J] - that is, I is the first position that does not
  5115.      match.  The character comparison is done case-insensitively.
  5116.  
  5117.     string=
  5118.  
  5119.  -- Scheme Procedure: string= s1 s2 [start1 [end1 [start2 [end2]]]]
  5120.      Return `#f' if S1 and S2 are not equal, a true value otherwise.
  5121.  
  5122.     string<>
  5123.  
  5124.  -- Scheme Procedure: string<> s1 s2 [start1 [end1 [start2 [end2]]]]
  5125.      Return `#f' if S1 and S2 are equal, a true value otherwise.
  5126.  
  5127.     string<
  5128.  
  5129.  -- Scheme Procedure: string< s1 s2 [start1 [end1 [start2 [end2]]]]
  5130.      Return `#f' if S1 is greater or equal to S2, a true value
  5131.      otherwise.
  5132.  
  5133.     string>
  5134.  
  5135.  -- Scheme Procedure: string> s1 s2 [start1 [end1 [start2 [end2]]]]
  5136.      Return `#f' if S1 is less or equal to S2, a true value otherwise.
  5137.  
  5138.     string<=
  5139.  
  5140.  -- Scheme Procedure: string<= s1 s2 [start1 [end1 [start2 [end2]]]]
  5141.      Return `#f' if S1 is greater to S2, a true value otherwise.
  5142.  
  5143.     string>=
  5144.  
  5145.  -- Scheme Procedure: string>= s1 s2 [start1 [end1 [start2 [end2]]]]
  5146.      Return `#f' if S1 is less to S2, a true value otherwise.
  5147.  
  5148.     string-ci=
  5149.  
  5150.  -- Scheme Procedure: string-ci= s1 s2 [start1 [end1 [start2 [end2]]]]
  5151.      Return `#f' if S1 and S2 are not equal, a true value otherwise.
  5152.      The character comparison is done case-insensitively.
  5153.  
  5154.     string-ci<>
  5155.  
  5156.  -- Scheme Procedure: string-ci<> s1 s2 [start1 [end1 [start2 [end2]]]]
  5157.      Return `#f' if S1 and S2 are equal, a true value otherwise.  The
  5158.      character comparison is done case-insensitively.
  5159.  
  5160.     string-ci<
  5161.  
  5162.  -- Scheme Procedure: string-ci< s1 s2 [start1 [end1 [start2 [end2]]]]
  5163.      Return `#f' if S1 is greater or equal to S2, a true value
  5164.      otherwise.  The character comparison is done case-insensitively.
  5165.  
  5166.     string-ci>
  5167.  
  5168.  -- Scheme Procedure: string-ci> s1 s2 [start1 [end1 [start2 [end2]]]]
  5169.      Return `#f' if S1 is less or equal to S2, a true value otherwise.
  5170.      The character comparison is done case-insensitively.
  5171.  
  5172.     string-ci<=
  5173.  
  5174.  -- Scheme Procedure: string-ci<= s1 s2 [start1 [end1 [start2 [end2]]]]
  5175.      Return `#f' if S1 is greater to S2, a true value otherwise.  The
  5176.      character comparison is done case-insensitively.
  5177.  
  5178.     string-ci>=
  5179.  
  5180.  -- Scheme Procedure: string-ci>= s1 s2 [start1 [end1 [start2 [end2]]]]
  5181.      Return `#f' if S1 is less to S2, a true value otherwise.  The
  5182.      character comparison is done case-insensitively.
  5183.  
  5184.     string-hash
  5185.  
  5186.  -- Scheme Procedure: string-hash s [bound [start [end]]]
  5187.      Compute a hash value for S.  the optional argument BOUND is a
  5188.      non-negative exact integer specifying the range of the hash
  5189.      function. A positive value restricts the return value to the range
  5190.      [0,bound).
  5191.  
  5192.     string-hash-ci
  5193.  
  5194.  -- Scheme Procedure: string-hash-ci s [bound [start [end]]]
  5195.      Compute a hash value for S.  the optional argument BOUND is a
  5196.      non-negative exact integer specifying the range of the hash
  5197.      function. A positive value restricts the return value to the range
  5198.      [0,bound).
  5199.  
  5200.     string-prefix-length
  5201.  
  5202.  -- Scheme Procedure: string-prefix-length s1 s2 [start1 [end1 [start2
  5203.           [end2]]]]
  5204.      Return the length of the longest common prefix of the two strings.
  5205.  
  5206.     string-prefix-length-ci
  5207.  
  5208.  -- Scheme Procedure: string-prefix-length-ci s1 s2 [start1 [end1
  5209.           [start2 [end2]]]]
  5210.      Return the length of the longest common prefix of the two strings,
  5211.      ignoring character case.
  5212.  
  5213.     string-suffix-length
  5214.  
  5215.  -- Scheme Procedure: string-suffix-length s1 s2 [start1 [end1 [start2
  5216.           [end2]]]]
  5217.      Return the length of the longest common suffix of the two strings.
  5218.  
  5219.     string-suffix-length-ci
  5220.  
  5221.  -- Scheme Procedure: string-suffix-length-ci s1 s2 [start1 [end1
  5222.           [start2 [end2]]]]
  5223.      Return the length of the longest common suffix of the two strings,
  5224.      ignoring character case.
  5225.  
  5226.     string-prefix?
  5227.  
  5228.  -- Scheme Procedure: string-prefix? s1 s2 [start1 [end1 [start2
  5229.           [end2]]]]
  5230.      Is S1 a prefix of S2?
  5231.  
  5232.     string-prefix-ci?
  5233.  
  5234.  -- Scheme Procedure: string-prefix-ci? s1 s2 [start1 [end1 [start2
  5235.           [end2]]]]
  5236.      Is S1 a prefix of S2, ignoring character case?
  5237.  
  5238.     string-suffix?
  5239.  
  5240.  -- Scheme Procedure: string-suffix? s1 s2 [start1 [end1 [start2
  5241.           [end2]]]]
  5242.      Is S1 a suffix of S2?
  5243.  
  5244.     string-suffix-ci?
  5245.  
  5246.  -- Scheme Procedure: string-suffix-ci? s1 s2 [start1 [end1 [start2
  5247.           [end2]]]]
  5248.      Is S1 a suffix of S2, ignoring character case?
  5249.  
  5250.     string-index
  5251.  
  5252.  -- Scheme Procedure: string-index s char_pred [start [end]]
  5253.      Search through the string S from left to right, returning the
  5254.      index of the first occurence of a character which
  5255.  
  5256.         * equals CHAR_PRED, if it is character,
  5257.  
  5258.         * satisifies the predicate CHAR_PRED, if it is a procedure,
  5259.  
  5260.         * is in the set CHAR_PRED, if it is a character set.
  5261.  
  5262.     string-index-right
  5263.  
  5264.  -- Scheme Procedure: string-index-right s char_pred [start [end]]
  5265.      Search through the string S from right to left, returning the
  5266.      index of the last occurence of a character which
  5267.  
  5268.         * equals CHAR_PRED, if it is character,
  5269.  
  5270.         * satisifies the predicate CHAR_PRED, if it is a procedure,
  5271.  
  5272.         * is in the set if CHAR_PRED is a character set.
  5273.  
  5274.     string-rindex
  5275.  
  5276.  -- Scheme Procedure: string-rindex s char_pred [start [end]]
  5277.      Search through the string S from right to left, returning the
  5278.      index of the last occurence of a character which
  5279.  
  5280.         * equals CHAR_PRED, if it is character,
  5281.  
  5282.         * satisifies the predicate CHAR_PRED, if it is a procedure,
  5283.  
  5284.         * is in the set if CHAR_PRED is a character set.
  5285.  
  5286.     string-skip
  5287.  
  5288.  -- Scheme Procedure: string-skip s char_pred [start [end]]
  5289.      Search through the string S from left to right, returning the
  5290.      index of the first occurence of a character which
  5291.  
  5292.         * does not equal CHAR_PRED, if it is character,
  5293.  
  5294.         * does not satisify the predicate CHAR_PRED, if it is a
  5295.           procedure,
  5296.  
  5297.         * is not in the set if CHAR_PRED is a character set.
  5298.  
  5299.     string-skip-right
  5300.  
  5301.  -- Scheme Procedure: string-skip-right s char_pred [start [end]]
  5302.      Search through the string S from right to left, returning the
  5303.      index of the last occurence of a character which
  5304.  
  5305.         * does not equal CHAR_PRED, if it is character,
  5306.  
  5307.         * does not satisfy the predicate CHAR_PRED, if it is a
  5308.           procedure,
  5309.  
  5310.         * is not in the set if CHAR_PRED is a character set.
  5311.  
  5312.     string-count
  5313.  
  5314.  -- Scheme Procedure: string-count s char_pred [start [end]]
  5315.      Return the count of the number of characters in the string S which
  5316.  
  5317.         * equals CHAR_PRED, if it is character,
  5318.  
  5319.         * satisifies the predicate CHAR_PRED, if it is a procedure.
  5320.  
  5321.         * is in the set CHAR_PRED, if it is a character set.
  5322.  
  5323.     string-contains
  5324.  
  5325.  -- Scheme Procedure: string-contains s1 s2 [start1 [end1 [start2
  5326.           [end2]]]]
  5327.      Does string S1 contain string S2?  Return the index in S1 where S2
  5328.      occurs as a substring, or false.  The optional start/end indices
  5329.      restrict the operation to the indicated substrings.
  5330.  
  5331.     string-contains-ci
  5332.  
  5333.  -- Scheme Procedure: string-contains-ci s1 s2 [start1 [end1 [start2
  5334.           [end2]]]]
  5335.      Does string S1 contain string S2?  Return the index in S1 where S2
  5336.      occurs as a substring, or false.  The optional start/end indices
  5337.      restrict the operation to the indicated substrings.  Character
  5338.      comparison is done case-insensitively.
  5339.  
  5340.     string-upcase!
  5341.  
  5342.  -- Scheme Procedure: string-upcase! str [start [end]]
  5343.      Destructively upcase every character in `str'.
  5344.  
  5345.           (string-upcase! y)
  5346.           => "ARRDEFG"
  5347.           y
  5348.           => "ARRDEFG"
  5349.  
  5350.     string-upcase
  5351.  
  5352.  -- Scheme Procedure: string-upcase str [start [end]]
  5353.      Upcase every character in `str'.
  5354.  
  5355.     string-downcase!
  5356.  
  5357.  -- Scheme Procedure: string-downcase! str [start [end]]
  5358.      Destructively downcase every character in STR.
  5359.  
  5360.           y
  5361.           => "ARRDEFG"
  5362.           (string-downcase! y)
  5363.           => "arrdefg"
  5364.           y
  5365.           => "arrdefg"
  5366.  
  5367.     string-downcase
  5368.  
  5369.  -- Scheme Procedure: string-downcase str [start [end]]
  5370.      Downcase every character in STR.
  5371.  
  5372.     string-titlecase!
  5373.  
  5374.  -- Scheme Procedure: string-titlecase! str [start [end]]
  5375.      Destructively titlecase every first character in a word in STR.
  5376.  
  5377.     string-titlecase
  5378.  
  5379.  -- Scheme Procedure: string-titlecase str [start [end]]
  5380.      Titlecase every first character in a word in STR.
  5381.  
  5382.     string-capitalize!
  5383.  
  5384.  -- Scheme Procedure: string-capitalize! str
  5385.      Upcase the first character of every word in STR destructively and
  5386.      return STR.
  5387.  
  5388.           y                      => "hello world"
  5389.           (string-capitalize! y) => "Hello World"
  5390.           y                      => "Hello World"
  5391.  
  5392.     string-capitalize
  5393.  
  5394.  -- Scheme Procedure: string-capitalize str
  5395.      Return a freshly allocated string with the characters in STR,
  5396.      where the first character of every word is capitalized.
  5397.  
  5398.     string-reverse
  5399.  
  5400.  -- Scheme Procedure: string-reverse str [start [end]]
  5401.      Reverse the string STR.  The optional arguments START and END
  5402.      delimit the region of STR to operate on.
  5403.  
  5404.     string-reverse!
  5405.  
  5406.  -- Scheme Procedure: string-reverse! str [start [end]]
  5407.      Reverse the string STR in-place.  The optional arguments START and
  5408.      END delimit the region of STR to operate on.  The return value is
  5409.      unspecified.
  5410.  
  5411.     string-append/shared
  5412.  
  5413.  -- Scheme Procedure: string-append/shared . rest
  5414.      Like `string-append', but the result may share memory with the
  5415.      argument strings.
  5416.  
  5417.     string-concatenate
  5418.  
  5419.  -- Scheme Procedure: string-concatenate ls
  5420.      Append the elements of LS (which must be strings) together into a
  5421.      single string.  Guaranteed to return a freshly allocated string.
  5422.  
  5423.     string-concatenate-reverse
  5424.  
  5425.  -- Scheme Procedure: string-concatenate-reverse ls [final_string [end]]
  5426.      Without optional arguments, this procedure is equivalent to
  5427.  
  5428.           (string-concatenate (reverse ls))
  5429.  
  5430.      If the optional argument FINAL_STRING is specified, it is consed
  5431.      onto the beginning to LS before performing the list-reverse and
  5432.      string-concatenate operations.  If END is given, only the
  5433.      characters of FINAL_STRING up to index END are used.
  5434.  
  5435.      Guaranteed to return a freshly allocated string.
  5436.  
  5437.     string-concatenate/shared
  5438.  
  5439.  -- Scheme Procedure: string-concatenate/shared ls
  5440.      Like `string-concatenate', but the result may share memory with
  5441.      the strings in the list LS.
  5442.  
  5443.     string-concatenate-reverse/shared
  5444.  
  5445.  -- Scheme Procedure: string-concatenate-reverse/shared ls
  5446.           [final_string [end]]
  5447.      Like `string-concatenate-reverse', but the result may share memory
  5448.      with the the strings in the LS arguments.
  5449.  
  5450.     string-map
  5451.  
  5452.  -- Scheme Procedure: string-map proc s [start [end]]
  5453.      PROC is a char->char procedure, it is mapped over S.  The order in
  5454.      which the procedure is applied to the string elements is not
  5455.      specified.
  5456.  
  5457.     string-map!
  5458.  
  5459.  -- Scheme Procedure: string-map! proc s [start [end]]
  5460.      PROC is a char->char procedure, it is mapped over S.  The order in
  5461.      which the procedure is applied to the string elements is not
  5462.      specified.  The string S is modified in-place, the return value is
  5463.      not specified.
  5464.  
  5465.     string-fold
  5466.  
  5467.  -- Scheme Procedure: string-fold kons knil s [start [end]]
  5468.      Fold KONS over the characters of S, with KNIL as the terminating
  5469.      element, from left to right.  KONS must expect two arguments: The
  5470.      actual character and the last result of KONS' application.
  5471.  
  5472.     string-fold-right
  5473.  
  5474.  -- Scheme Procedure: string-fold-right kons knil s [start [end]]
  5475.      Fold KONS over the characters of S, with KNIL as the terminating
  5476.      element, from right to left.  KONS must expect two arguments: The
  5477.      actual character and the last result of KONS' application.
  5478.  
  5479.     string-unfold
  5480.  
  5481.  -- Scheme Procedure: string-unfold p f g seed [base [make_final]]
  5482.         * G is used to generate a series of _seed_ values from the
  5483.           initial SEED: SEED, (G SEED), (G^2 SEED), (G^3 SEED), ...
  5484.  
  5485.         * P tells us when to stop - when it returns true when applied
  5486.           to one of these seed values.
  5487.  
  5488.         * F maps each seed value to the corresponding character in the
  5489.           result string.  These chars are assembled into the string in
  5490.           a left-to-right order.
  5491.  
  5492.         * BASE is the optional initial/leftmost portion of the
  5493.           constructed string; it default to the empty string.
  5494.  
  5495.         * MAKE_FINAL is applied to the terminal seed value (on which P
  5496.           returns true) to produce the final/rightmost portion of the
  5497.           constructed string.  It defaults to `(lambda (x) )'.
  5498.  
  5499.     string-unfold-right
  5500.  
  5501.  -- Scheme Procedure: string-unfold-right p f g seed [base [make_final]]
  5502.         * G is used to generate a series of _seed_ values from the
  5503.           initial SEED: SEED, (G SEED), (G^2 SEED), (G^3 SEED), ...
  5504.  
  5505.         * P tells us when to stop - when it returns true when applied
  5506.           to one of these seed values.
  5507.  
  5508.         * F maps each seed value to the corresponding character in the
  5509.           result string.  These chars are assembled into the string in
  5510.           a right-to-left order.
  5511.  
  5512.         * BASE is the optional initial/rightmost portion of the
  5513.           constructed string; it default to the empty string.
  5514.  
  5515.         * MAKE_FINAL is applied to the terminal seed value (on which P
  5516.           returns true) to produce the final/leftmost portion of the
  5517.           constructed string.  It defaults to `(lambda (x) )'.
  5518.  
  5519.     string-for-each
  5520.  
  5521.  -- Scheme Procedure: string-for-each proc s [start [end]]
  5522.      PROC is mapped over S in left-to-right order.  The return value is
  5523.      not specified.
  5524.  
  5525.     string-for-each-index
  5526.  
  5527.  -- Scheme Procedure: string-for-each-index proc s [start [end]]
  5528.      Call `(PROC i)' for each index i in S, from left to right.
  5529.  
  5530.      For example, to change characters to alternately upper and lower
  5531.      case,
  5532.  
  5533.           (define str (string-copy "studly"))
  5534.           (string-for-each-index
  5535.               (lambda (i)
  5536.                 (string-set! str i
  5537.                   ((if (even? i) char-upcase char-downcase)
  5538.                    (string-ref str i))))
  5539.               str)
  5540.           str => "StUdLy"
  5541.  
  5542.     xsubstring
  5543.  
  5544.  -- Scheme Procedure: xsubstring s from [to [start [end]]]
  5545.      This is the _extended substring_ procedure that implements
  5546.      replicated copying of a substring of some string.
  5547.  
  5548.      S is a string, START and END are optional arguments that demarcate
  5549.      a substring of S, defaulting to 0 and the length of S.  Replicate
  5550.      this substring up and down index space, in both the positive and
  5551.      negative directions.  `xsubstring' returns the substring of this
  5552.      string beginning at index FROM, and ending at TO, which defaults
  5553.      to FROM + (END - START).
  5554.  
  5555.     string-xcopy!
  5556.  
  5557.  -- Scheme Procedure: string-xcopy! target tstart s sfrom [sto [start
  5558.           [end]]]
  5559.      Exactly the same as `xsubstring', but the extracted text is
  5560.      written into the string TARGET starting at index TSTART.  The
  5561.      operation is not defined if `(eq?  TARGET S)' or these arguments
  5562.      share storage - you cannot copy a string on top of itself.
  5563.  
  5564.     string-replace
  5565.  
  5566.  -- Scheme Procedure: string-replace s1 s2 [start1 [end1 [start2
  5567.           [end2]]]]
  5568.      Return the string S1, but with the characters START1 ... END1
  5569.      replaced by the characters START2 ... END2 from S2.
  5570.  
  5571.     string-tokenize
  5572.  
  5573.  -- Scheme Procedure: string-tokenize s [token_set [start [end]]]
  5574.      Split the string S into a list of substrings, where each substring
  5575.      is a maximal non-empty contiguous sequence of characters from the
  5576.      character set TOKEN_SET, which defaults to `char-set:graphic'.  If
  5577.      START or END indices are provided, they restrict `string-tokenize'
  5578.      to operating on the indicated substring of S.
  5579.  
  5580.     string-split
  5581.  
  5582.  -- Scheme Procedure: string-split str chr
  5583.      Split the string STR into the a list of the substrings delimited
  5584.      by appearances of the character CHR.  Note that an empty substring
  5585.      between separator characters will result in an empty string in the
  5586.      result list.
  5587.  
  5588.           (string-split "root:x:0:0:root:/root:/bin/bash" #\:)
  5589.           =>
  5590.           ("root" "x" "0" "0" "root" "/root" "/bin/bash")
  5591.  
  5592.           (string-split "::" #\:)
  5593.           =>
  5594.           ("" "" "")
  5595.  
  5596.           (string-split "" #\:)
  5597.           =>
  5598.           ("")
  5599.  
  5600.     string-filter
  5601.  
  5602.  -- Scheme Procedure: string-filter s char_pred [start [end]]
  5603.      Filter the string S, retaining only those characters which satisfy
  5604.      CHAR_PRED.
  5605.  
  5606.      If CHAR_PRED is a procedure, it is applied to each character as a
  5607.      predicate, if it is a character, it is tested for equality and if
  5608.      it is a character set, it is tested for membership.
  5609.  
  5610.     string-delete
  5611.  
  5612.  -- Scheme Procedure: string-delete s char_pred [start [end]]
  5613.      Delete characters satisfying CHAR_PRED from S.
  5614.  
  5615.      If CHAR_PRED is a procedure, it is applied to each character as a
  5616.      predicate, if it is a character, it is tested for equality and if
  5617.      it is a character set, it is tested for membership.
  5618.  
  5619.     char-set?
  5620.  
  5621.  -- Scheme Procedure: char-set? obj
  5622.      Return `#t' if OBJ is a character set, `#f' otherwise.
  5623.  
  5624.     char-set=
  5625.  
  5626.  -- Scheme Procedure: char-set= . char_sets
  5627.      Return `#t' if all given character sets are equal.
  5628.  
  5629.     char-set<=
  5630.  
  5631.  -- Scheme Procedure: char-set<= . char_sets
  5632.      Return `#t' if every character set CSi is a subset of character
  5633.      set CSi+1.
  5634.  
  5635.     char-set-hash
  5636.  
  5637.  -- Scheme Procedure: char-set-hash cs [bound]
  5638.      Compute a hash value for the character set CS.  If BOUND is given
  5639.      and non-zero, it restricts the returned value to the range 0 ...
  5640.      BOUND - 1.
  5641.  
  5642.     char-set-cursor
  5643.  
  5644.  -- Scheme Procedure: char-set-cursor cs
  5645.      Return a cursor into the character set CS.
  5646.  
  5647.     char-set-ref
  5648.  
  5649.  -- Scheme Procedure: char-set-ref cs cursor
  5650.      Return the character at the current cursor position CURSOR in the
  5651.      character set CS.  It is an error to pass a cursor for which
  5652.      `end-of-char-set?' returns true.
  5653.  
  5654.     char-set-cursor-next
  5655.  
  5656.  -- Scheme Procedure: char-set-cursor-next cs cursor
  5657.      Advance the character set cursor CURSOR to the next character in
  5658.      the character set CS.  It is an error if the cursor given
  5659.      satisfies `end-of-char-set?'.
  5660.  
  5661.     end-of-char-set?
  5662.  
  5663.  -- Scheme Procedure: end-of-char-set? cursor
  5664.      Return `#t' if CURSOR has reached the end of a character set, `#f'
  5665.      otherwise.
  5666.  
  5667.     char-set-fold
  5668.  
  5669.  -- Scheme Procedure: char-set-fold kons knil cs
  5670.      Fold the procedure KONS over the character set CS, initializing it
  5671.      with KNIL.
  5672.  
  5673.     char-set-unfold
  5674.  
  5675.  -- Scheme Procedure: char-set-unfold p f g seed [base_cs]
  5676.      This is a fundamental constructor for character sets.
  5677.         * G is used to generate a series of "seed" values from the
  5678.           initial seed: SEED, (G SEED), (G^2 SEED), (G^3 SEED), ...
  5679.  
  5680.         * P tells us when to stop - when it returns true when applied
  5681.           to one of the seed values.
  5682.  
  5683.         * F maps each seed value to a character. These characters are
  5684.           added to the base character set BASE_CS to form the result;
  5685.           BASE_CS defaults to the empty set.
  5686.  
  5687.     char-set-unfold!
  5688.  
  5689.  -- Scheme Procedure: char-set-unfold! p f g seed base_cs
  5690.      This is a fundamental constructor for character sets.
  5691.         * G is used to generate a series of "seed" values from the
  5692.           initial seed: SEED, (G SEED), (G^2 SEED), (G^3 SEED), ...
  5693.  
  5694.         * P tells us when to stop - when it returns true when applied
  5695.           to one of the seed values.
  5696.  
  5697.         * F maps each seed value to a character. These characters are
  5698.           added to the base character set BASE_CS to form the result;
  5699.           BASE_CS defaults to the empty set.
  5700.  
  5701.     char-set-for-each
  5702.  
  5703.  -- Scheme Procedure: char-set-for-each proc cs
  5704.      Apply PROC to every character in the character set CS.  The return
  5705.      value is not specified.
  5706.  
  5707.     char-set-map
  5708.  
  5709.  -- Scheme Procedure: char-set-map proc cs
  5710.      Map the procedure PROC over every character in CS.  PROC must be a
  5711.      character -> character procedure.
  5712.  
  5713.     char-set-copy
  5714.  
  5715.  -- Scheme Procedure: char-set-copy cs
  5716.      Return a newly allocated character set containing all characters
  5717.      in CS.
  5718.  
  5719.     char-set
  5720.  
  5721.  -- Scheme Procedure: char-set . rest
  5722.      Return a character set containing all given characters.
  5723.  
  5724.     list->char-set
  5725.  
  5726.  -- Scheme Procedure: list->char-set list [base_cs]
  5727.      Convert the character list LIST to a character set.  If the
  5728.      character set BASE_CS is given, the character in this set are also
  5729.      included in the result.
  5730.  
  5731.     list->char-set!
  5732.  
  5733.  -- Scheme Procedure: list->char-set! list base_cs
  5734.      Convert the character list LIST to a character set.  The
  5735.      characters are added to BASE_CS and BASE_CS is returned.
  5736.  
  5737.     string->char-set
  5738.  
  5739.  -- Scheme Procedure: string->char-set str [base_cs]
  5740.      Convert the string STR to a character set.  If the character set
  5741.      BASE_CS is given, the characters in this set are also included in
  5742.      the result.
  5743.  
  5744.     string->char-set!
  5745.  
  5746.  -- Scheme Procedure: string->char-set! str base_cs
  5747.      Convert the string STR to a character set.  The characters from
  5748.      the string are added to BASE_CS, and BASE_CS is returned.
  5749.  
  5750.     char-set-filter
  5751.  
  5752.  -- Scheme Procedure: char-set-filter pred cs [base_cs]
  5753.      Return a character set containing every character from CS so that
  5754.      it satisfies PRED.  If provided, the characters from BASE_CS are
  5755.      added to the result.
  5756.  
  5757.     char-set-filter!
  5758.  
  5759.  -- Scheme Procedure: char-set-filter! pred cs base_cs
  5760.      Return a character set containing every character from CS so that
  5761.      it satisfies PRED.  The characters are added to BASE_CS and
  5762.      BASE_CS is returned.
  5763.  
  5764.     ucs-range->char-set
  5765.  
  5766.  -- Scheme Procedure: ucs-range->char-set lower upper [error [base_cs]]
  5767.      Return a character set containing all characters whose character
  5768.      codes lie in the half-open range [LOWER,UPPER).
  5769.  
  5770.      If ERROR is a true value, an error is signalled if the specified
  5771.      range contains characters which are not contained in the
  5772.      implemented character range.  If ERROR is `#f', these characters
  5773.      are silently left out of the resultung character set.
  5774.  
  5775.      The characters in BASE_CS are added to the result, if given.
  5776.  
  5777.     ucs-range->char-set!
  5778.  
  5779.  -- Scheme Procedure: ucs-range->char-set! lower upper error base_cs
  5780.      Return a character set containing all characters whose character
  5781.      codes lie in the half-open range [LOWER,UPPER).
  5782.  
  5783.      If ERROR is a true value, an error is signalled if the specified
  5784.      range contains characters which are not contained in the
  5785.      implemented character range.  If ERROR is `#f', these characters
  5786.      are silently left out of the resultung character set.
  5787.  
  5788.      The characters are added to BASE_CS and BASE_CS is returned.
  5789.  
  5790.     ->char-set
  5791.  
  5792.  -- Scheme Procedure: ->char-set x
  5793.      Coerces x into a char-set. X may be a string, character or
  5794.      char-set. A string is converted to the set of its constituent
  5795.      characters; a character is converted to a singleton set; a
  5796.      char-set is returned as-is.
  5797.  
  5798.     char-set-size
  5799.  
  5800.  -- Scheme Procedure: char-set-size cs
  5801.      Return the number of elements in character set CS.
  5802.  
  5803.     char-set-count
  5804.  
  5805.  -- Scheme Procedure: char-set-count pred cs
  5806.      Return the number of the elements int the character set CS which
  5807.      satisfy the predicate PRED.
  5808.  
  5809.     char-set->list
  5810.  
  5811.  -- Scheme Procedure: char-set->list cs
  5812.      Return a list containing the elements of the character set CS.
  5813.  
  5814.     char-set->string
  5815.  
  5816.  -- Scheme Procedure: char-set->string cs
  5817.      Return a string containing the elements of the character set CS.
  5818.      The order in which the characters are placed in the string is not
  5819.      defined.
  5820.  
  5821.     char-set-contains?
  5822.  
  5823.  -- Scheme Procedure: char-set-contains? cs ch
  5824.      Return `#t' iff the character CH is contained in the character set
  5825.      CS.
  5826.  
  5827.     char-set-every
  5828.  
  5829.  -- Scheme Procedure: char-set-every pred cs
  5830.      Return a true value if every character in the character set CS
  5831.      satisfies the predicate PRED.
  5832.  
  5833.     char-set-any
  5834.  
  5835.  -- Scheme Procedure: char-set-any pred cs
  5836.      Return a true value if any character in the character set CS
  5837.      satisfies the predicate PRED.
  5838.  
  5839.     char-set-adjoin
  5840.  
  5841.  -- Scheme Procedure: char-set-adjoin cs . rest
  5842.      Add all character arguments to the first argument, which must be a
  5843.      character set.
  5844.  
  5845.     char-set-delete
  5846.  
  5847.  -- Scheme Procedure: char-set-delete cs . rest
  5848.      Delete all character arguments from the first argument, which must
  5849.      be a character set.
  5850.  
  5851.     char-set-adjoin!
  5852.  
  5853.  -- Scheme Procedure: char-set-adjoin! cs . rest
  5854.      Add all character arguments to the first argument, which must be a
  5855.      character set.
  5856.  
  5857.     char-set-delete!
  5858.  
  5859.  -- Scheme Procedure: char-set-delete! cs . rest
  5860.      Delete all character arguments from the first argument, which must
  5861.      be a character set.
  5862.  
  5863.     char-set-complement
  5864.  
  5865.  -- Scheme Procedure: char-set-complement cs
  5866.      Return the complement of the character set CS.
  5867.  
  5868.     char-set-union
  5869.  
  5870.  -- Scheme Procedure: char-set-union . rest
  5871.      Return the union of all argument character sets.
  5872.  
  5873.     char-set-intersection
  5874.  
  5875.  -- Scheme Procedure: char-set-intersection . rest
  5876.      Return the intersection of all argument character sets.
  5877.  
  5878.     char-set-difference
  5879.  
  5880.  -- Scheme Procedure: char-set-difference cs1 . rest
  5881.      Return the difference of all argument character sets.
  5882.  
  5883.     char-set-xor
  5884.  
  5885.  -- Scheme Procedure: char-set-xor . rest
  5886.      Return the exclusive-or of all argument character sets.
  5887.  
  5888.     char-set-diff+intersection
  5889.  
  5890.  -- Scheme Procedure: char-set-diff+intersection cs1 . rest
  5891.      Return the difference and the intersection of all argument
  5892.      character sets.
  5893.  
  5894.     char-set-complement!
  5895.  
  5896.  -- Scheme Procedure: char-set-complement! cs
  5897.      Return the complement of the character set CS.
  5898.  
  5899.     char-set-union!
  5900.  
  5901.  -- Scheme Procedure: char-set-union! cs1 . rest
  5902.      Return the union of all argument character sets.
  5903.  
  5904.     char-set-intersection!
  5905.  
  5906.  -- Scheme Procedure: char-set-intersection! cs1 . rest
  5907.      Return the intersection of all argument character sets.
  5908.  
  5909.     char-set-difference!
  5910.  
  5911.  -- Scheme Procedure: char-set-difference! cs1 . rest
  5912.      Return the difference of all argument character sets.
  5913.  
  5914.     char-set-xor!
  5915.  
  5916.  -- Scheme Procedure: char-set-xor! cs1 . rest
  5917.      Return the exclusive-or of all argument character sets.
  5918.  
  5919.     char-set-diff+intersection!
  5920.  
  5921.  -- Scheme Procedure: char-set-diff+intersection! cs1 cs2 . rest
  5922.      Return the difference and the intersection of all argument
  5923.      character sets.
  5924.  
  5925.     string=?
  5926.  
  5927.  -- Scheme Procedure: string=? s1 s2
  5928.      Lexicographic equality predicate; return `#t' if the two strings
  5929.      are the same length and contain the same characters in the same
  5930.      positions, otherwise return `#f'.
  5931.  
  5932.      The procedure `string-ci=?' treats upper and lower case letters as
  5933.      though they were the same character, but `string=?' treats upper
  5934.      and lower case as distinct characters.
  5935.  
  5936.     string-ci=?
  5937.  
  5938.  -- Scheme Procedure: string-ci=? s1 s2
  5939.      Case-insensitive string equality predicate; return `#t' if the two
  5940.      strings are the same length and their component characters match
  5941.      (ignoring case) at each position; otherwise return `#f'.
  5942.  
  5943.     string<?
  5944.  
  5945.  -- Scheme Procedure: string<? s1 s2
  5946.      Lexicographic ordering predicate; return `#t' if S1 is
  5947.      lexicographically less than S2.
  5948.  
  5949.     string<=?
  5950.  
  5951.  -- Scheme Procedure: string<=? s1 s2
  5952.      Lexicographic ordering predicate; return `#t' if S1 is
  5953.      lexicographically less than or equal to S2.
  5954.  
  5955.     string>?
  5956.  
  5957.  -- Scheme Procedure: string>? s1 s2
  5958.      Lexicographic ordering predicate; return `#t' if S1 is
  5959.      lexicographically greater than S2.
  5960.  
  5961.     string>=?
  5962.  
  5963.  -- Scheme Procedure: string>=? s1 s2
  5964.      Lexicographic ordering predicate; return `#t' if S1 is
  5965.      lexicographically greater than or equal to S2.
  5966.  
  5967.     string-ci<?
  5968.  
  5969.  -- Scheme Procedure: string-ci<? s1 s2
  5970.      Case insensitive lexicographic ordering predicate; return `#t' if
  5971.      S1 is lexicographically less than S2 regardless of case.
  5972.  
  5973.     string-ci<=?
  5974.  
  5975.  -- Scheme Procedure: string-ci<=? s1 s2
  5976.      Case insensitive lexicographic ordering predicate; return `#t' if
  5977.      S1 is lexicographically less than or equal to S2 regardless of
  5978.      case.
  5979.  
  5980.     string-ci>?
  5981.  
  5982.  -- Scheme Procedure: string-ci>? s1 s2
  5983.      Case insensitive lexicographic ordering predicate; return `#t' if
  5984.      S1 is lexicographically greater than S2 regardless of case.
  5985.  
  5986.     string-ci>=?
  5987.  
  5988.  -- Scheme Procedure: string-ci>=? s1 s2
  5989.      Case insensitive lexicographic ordering predicate; return `#t' if
  5990.      S1 is lexicographically greater than or equal to S2 regardless of
  5991.      case.
  5992.  
  5993.     object->string
  5994.  
  5995.  -- Scheme Procedure: object->string obj [printer]
  5996.      Return a Scheme string obtained by printing OBJ.  Printing
  5997.      function can be specified by the optional second argument PRINTER
  5998.      (default: `write').
  5999.  
  6000.     call-with-output-string
  6001.  
  6002.  -- Scheme Procedure: call-with-output-string proc
  6003.      Calls the one-argument procedure PROC with a newly created output
  6004.      port.  When the function returns, the string composed of the
  6005.      characters written into the port is returned.
  6006.  
  6007.     call-with-input-string
  6008.  
  6009.  -- Scheme Procedure: call-with-input-string string proc
  6010.      Calls the one-argument procedure PROC with a newly created input
  6011.      port from which STRING's contents may be read.  The value yielded
  6012.      by the PROC is returned.
  6013.  
  6014.     open-input-string
  6015.  
  6016.  -- Scheme Procedure: open-input-string str
  6017.      Take a string and return an input port that delivers characters
  6018.      from the string. The port can be closed by `close-input-port',
  6019.      though its storage will be reclaimed by the garbage collector if
  6020.      it becomes inaccessible.
  6021.  
  6022.     open-output-string
  6023.  
  6024.  -- Scheme Procedure: open-output-string
  6025.      Return an output port that will accumulate characters for
  6026.      retrieval by `get-output-string'. The port can be closed by the
  6027.      procedure `close-output-port', though its storage will be
  6028.      reclaimed by the garbage collector if it becomes inaccessible.
  6029.  
  6030.     get-output-string
  6031.  
  6032.  -- Scheme Procedure: get-output-string port
  6033.      Given an output port created by `open-output-string', return a
  6034.      string consisting of the characters that have been output to the
  6035.      port so far.
  6036.  
  6037.     eval-string
  6038.  
  6039.  -- Scheme Procedure: eval-string string [module]
  6040.      Evaluate STRING as the text representation of a Scheme form or
  6041.      forms, and return whatever value they produce.  Evaluation takes
  6042.      place in the given module, or the current module when no module is
  6043.      given.  While the code is evaluated, the given module is made the
  6044.      current one.  The current module is restored when this procedure
  6045.      returns.
  6046.  
  6047.     make-struct-layout
  6048.  
  6049.  -- Scheme Procedure: make-struct-layout fields
  6050.      Return a new structure layout object.
  6051.  
  6052.      FIELDS must be a string made up of pairs of characters strung
  6053.      together.  The first character of each pair describes a field
  6054.      type, the second a field protection.  Allowed types are 'p' for
  6055.      GC-protected Scheme data, 'u' for unprotected binary data, and 's'
  6056.      for a field that points to the structure itself.    Allowed
  6057.      protections are 'w' for mutable fields, 'r' for read-only fields,
  6058.      and 'o' for opaque fields.  The last field protection
  6059.      specification may be capitalized to indicate that the field is a
  6060.      tail-array.
  6061.  
  6062.     struct?
  6063.  
  6064.  -- Scheme Procedure: struct? x
  6065.      Return `#t' iff X is a structure object, else `#f'.
  6066.  
  6067.     struct-vtable?
  6068.  
  6069.  -- Scheme Procedure: struct-vtable? x
  6070.      Return `#t' iff X is a vtable structure.
  6071.  
  6072.     make-struct
  6073.  
  6074.  -- Scheme Procedure: make-struct vtable tail_array_size . init
  6075.      Create a new structure.
  6076.  
  6077.      TYPE must be a vtable structure (*note Vtables::).
  6078.  
  6079.      TAIL-ELTS must be a non-negative integer.  If the layout
  6080.      specification indicated by TYPE includes a tail-array, this is the
  6081.      number of elements allocated to that array.
  6082.  
  6083.      The INIT1, ... are optional arguments describing how successive
  6084.      fields of the structure should be initialized.  Only fields with
  6085.      protection 'r' or 'w' can be initialized, except for fields of
  6086.      type 's', which are automatically initialized to point to the new
  6087.      structure itself; fields with protection 'o' can not be
  6088.      initialized by Scheme programs.
  6089.  
  6090.      If fewer optional arguments than initializable fields are supplied,
  6091.      fields of type 'p' get default value #f while fields of type 'u'
  6092.      are initialized to 0.
  6093.  
  6094.      Structs are currently the basic representation for record-like data
  6095.      structures in Guile.  The plan is to eventually replace them with a
  6096.      new representation which will at the same time be easier to use and
  6097.      more powerful.
  6098.  
  6099.      For more information, see the documentation for
  6100.      `make-vtable-vtable'.
  6101.  
  6102.     make-vtable-vtable
  6103.  
  6104.  -- Scheme Procedure: make-vtable-vtable user_fields tail_array_size .
  6105.           init
  6106.      Return a new, self-describing vtable structure.
  6107.  
  6108.      USER-FIELDS is a string describing user defined fields of the
  6109.      vtable beginning at index `vtable-offset-user' (see
  6110.      `make-struct-layout').
  6111.  
  6112.      TAIL-SIZE specifies the size of the tail-array (if any) of this
  6113.      vtable.
  6114.  
  6115.      INIT1, ... are the optional initializers for the fields of the
  6116.      vtable.
  6117.  
  6118.      Vtables have one initializable system field--the struct printer.
  6119.      This field comes before the user fields in the initializers passed
  6120.      to `make-vtable-vtable' and `make-struct', and thus works as a
  6121.      third optional argument to `make-vtable-vtable' and a fourth to
  6122.      `make-struct' when creating vtables:
  6123.  
  6124.      If the value is a procedure, it will be called instead of the
  6125.      standard printer whenever a struct described by this vtable is
  6126.      printed.  The procedure will be called with arguments STRUCT and
  6127.      PORT.
  6128.  
  6129.      The structure of a struct is described by a vtable, so the vtable
  6130.      is in essence the type of the struct.  The vtable is itself a
  6131.      struct with a vtable.  This could go on forever if it weren't for
  6132.      the vtable-vtables which are self-describing vtables, and thus
  6133.      terminate the chain.
  6134.  
  6135.      There are several potential ways of using structs, but the standard
  6136.      one is to use three kinds of structs, together building up a type
  6137.      sub-system: one vtable-vtable working as the root and one or
  6138.      several "types", each with a set of "instances".  (The
  6139.      vtable-vtable should be compared to the class <class> which is the
  6140.      class of itself.)
  6141.  
  6142.           (define ball-root (make-vtable-vtable "pr" 0))
  6143.  
  6144.           (define (make-ball-type ball-color)
  6145.             (make-struct ball-root 0
  6146.                      (make-struct-layout "pw")
  6147.                          (lambda (ball port)
  6148.                            (format port "#<a ~A ball owned by ~A>"
  6149.                                    (color ball)
  6150.                                    (owner ball)))
  6151.                          ball-color))
  6152.           (define (color ball) (struct-ref (struct-vtable ball) vtable-offset-user))
  6153.           (define (owner ball) (struct-ref ball 0))
  6154.  
  6155.           (define red (make-ball-type 'red))
  6156.           (define green (make-ball-type 'green))
  6157.  
  6158.           (define (make-ball type owner) (make-struct type 0 owner))
  6159.  
  6160.           (define ball (make-ball green 'Nisse))
  6161.           ball => #<a green ball owned by Nisse>
  6162.  
  6163.     make-vtable
  6164.  
  6165.  -- Scheme Procedure: make-vtable fields [printer]
  6166.      Create a vtable, for creating structures with the given FIELDS.
  6167.  
  6168.      The optional PRINTER argument is a function to be called `(PRINTER
  6169.      struct port)' on the structures created.  It should look at STRUCT
  6170.      and write to PORT.
  6171.  
  6172.     struct-ref
  6173.  
  6174.  -- Scheme Procedure: struct-ref handle pos
  6175.  -- Scheme Procedure: struct-set! struct n value
  6176.      Access (or modify) the Nth field of STRUCT.
  6177.  
  6178.      If the field is of type 'p', then it can be set to an arbitrary
  6179.      value.
  6180.  
  6181.      If the field is of type 'u', then it can only be set to a
  6182.      non-negative integer value small enough to fit in one machine word.
  6183.  
  6184.     struct-set!
  6185.  
  6186.  -- Scheme Procedure: struct-set! handle pos val
  6187.      Set the slot of the structure HANDLE with index POS to VAL.
  6188.      Signal an error if the slot can not be written to.
  6189.  
  6190.     struct-vtable
  6191.  
  6192.  -- Scheme Procedure: struct-vtable handle
  6193.      Return the vtable structure that describes the type of STRUCT.
  6194.  
  6195.     struct-vtable-tag
  6196.  
  6197.  -- Scheme Procedure: struct-vtable-tag handle
  6198.      Return the vtable tag of the structure HANDLE.
  6199.  
  6200.     struct-vtable-name
  6201.  
  6202.  -- Scheme Procedure: struct-vtable-name vtable
  6203.      Return the name of the vtable VTABLE.
  6204.  
  6205.     set-struct-vtable-name!
  6206.  
  6207.  -- Scheme Procedure: set-struct-vtable-name! vtable name
  6208.      Set the name of the vtable VTABLE to NAME.
  6209.  
  6210.     symbol?
  6211.  
  6212.  -- Scheme Procedure: symbol? obj
  6213.      Return `#t' if OBJ is a symbol, otherwise return `#f'.
  6214.  
  6215.     symbol-interned?
  6216.  
  6217.  -- Scheme Procedure: symbol-interned? symbol
  6218.      Return `#t' if SYMBOL is interned, otherwise return `#f'.
  6219.  
  6220.     make-symbol
  6221.  
  6222.  -- Scheme Procedure: make-symbol name
  6223.      Return a new uninterned symbol with the name NAME.  The returned
  6224.      symbol is guaranteed to be unique and future calls to
  6225.      `string->symbol' will not return it.
  6226.  
  6227.     symbol->string
  6228.  
  6229.  -- Scheme Procedure: symbol->string s
  6230.      Return the name of SYMBOL as a string.  If the symbol was part of
  6231.      an object returned as the value of a literal expression (section
  6232.      *note Literal expressions: (r5rs)Literal expressions.) or by a
  6233.      call to the `read' procedure, and its name contains alphabetic
  6234.      characters, then the string returned will contain characters in
  6235.      the implementation's preferred standard case--some implementations
  6236.      will prefer upper case, others lower case.  If the symbol was
  6237.      returned by `string->symbol', the case of characters in the string
  6238.      returned will be the same as the case in the string that was
  6239.      passed to `string->symbol'.  It is an error to apply mutation
  6240.      procedures like `string-set!' to strings returned by this
  6241.      procedure.
  6242.  
  6243.      The following examples assume that the implementation's standard
  6244.      case is lower case:
  6245.  
  6246.           (symbol->string 'flying-fish)    => "flying-fish"
  6247.           (symbol->string 'Martin)         =>  "martin"
  6248.           (symbol->string
  6249.              (string->symbol "Malvina")) => "Malvina"
  6250.  
  6251.     string->symbol
  6252.  
  6253.  -- Scheme Procedure: string->symbol string
  6254.      Return the symbol whose name is STRING. This procedure can create
  6255.      symbols with names containing special characters or letters in the
  6256.      non-standard case, but it is usually a bad idea to create such
  6257.      symbols because in some implementations of Scheme they cannot be
  6258.      read as themselves.  See `symbol->string'.
  6259.  
  6260.      The following examples assume that the implementation's standard
  6261.      case is lower case:
  6262.  
  6263.           (eq? 'mISSISSIppi 'mississippi) => #t
  6264.           (string->symbol "mISSISSIppi") => the symbol with name "mISSISSIppi"
  6265.           (eq? 'bitBlt (string->symbol "bitBlt")) => #f
  6266.           (eq? 'JollyWog
  6267.             (string->symbol (symbol->string 'JollyWog))) => #t
  6268.           (string=? "K. Harper, M.D."
  6269.             (symbol->string
  6270.               (string->symbol "K. Harper, M.D."))) =>#t
  6271.  
  6272.     string-ci->symbol
  6273.  
  6274.  -- Scheme Procedure: string-ci->symbol str
  6275.      Return the symbol whose name is STR.  STR is converted to
  6276.      lowercase before the conversion is done, if Guile is currently
  6277.      reading symbols case-insensitively.
  6278.  
  6279.     gensym
  6280.  
  6281.  -- Scheme Procedure: gensym [prefix]
  6282.      Create a new symbol with a name constructed from a prefix and a
  6283.      counter value. The string PREFIX can be specified as an optional
  6284.      argument. Default prefix is ` g'.  The counter is increased by 1
  6285.      at each call. There is no provision for resetting the counter.
  6286.  
  6287.     symbol-hash
  6288.  
  6289.  -- Scheme Procedure: symbol-hash symbol
  6290.      Return a hash value for SYMBOL.
  6291.  
  6292.     symbol-fref
  6293.  
  6294.  -- Scheme Procedure: symbol-fref s
  6295.      Return the contents of SYMBOL's "function slot".
  6296.  
  6297.     symbol-pref
  6298.  
  6299.  -- Scheme Procedure: symbol-pref s
  6300.      Return the "property list" currently associated with SYMBOL.
  6301.  
  6302.     symbol-fset!
  6303.  
  6304.  -- Scheme Procedure: symbol-fset! s val
  6305.      Change the binding of SYMBOL's function slot.
  6306.  
  6307.     symbol-pset!
  6308.  
  6309.  -- Scheme Procedure: symbol-pset! s val
  6310.      Change the binding of SYMBOL's property slot.
  6311.  
  6312.     call-with-new-thread
  6313.  
  6314.  -- Scheme Procedure: call-with-new-thread thunk [handler]
  6315.      Call `thunk' in a new thread and with a new dynamic state,
  6316.      returning a new thread object representing the thread.  The
  6317.      procedure THUNK is called via `with-continuation-barrier'.
  6318.  
  6319.      When HANDLER is specified, then THUNK is called from within a
  6320.      `catch' with tag `#t' that has HANDLER as its handler.  This catch
  6321.      is established inside the continuation barrier.
  6322.  
  6323.      Once THUNK or HANDLER returns, the return value is made the _exit
  6324.      value_ of the thread and the thread is terminated.
  6325.  
  6326.     yield
  6327.  
  6328.  -- Scheme Procedure: yield
  6329.      Move the calling thread to the end of the scheduling queue.
  6330.  
  6331.     join-thread
  6332.  
  6333.  -- Scheme Procedure: join-thread thread
  6334.      Suspend execution of the calling thread until the target THREAD
  6335.      terminates, unless the target THREAD has already terminated.
  6336.  
  6337.     make-mutex
  6338.  
  6339.  -- Scheme Procedure: make-mutex
  6340.      Create a new mutex.
  6341.  
  6342.     make-recursive-mutex
  6343.  
  6344.  -- Scheme Procedure: make-recursive-mutex
  6345.      Create a new recursive mutex.
  6346.  
  6347.     lock-mutex
  6348.  
  6349.  -- Scheme Procedure: lock-mutex mx
  6350.      Lock MUTEX. If the mutex is already locked, the calling thread
  6351.      blocks until the mutex becomes available. The function returns
  6352.      when the calling thread owns the lock on MUTEX.  Locking a mutex
  6353.      that a thread already owns will succeed right away and will not
  6354.      block the thread.  That is, Guile's mutexes are _recursive_.
  6355.  
  6356.     try-mutex
  6357.  
  6358.  -- Scheme Procedure: try-mutex mutex
  6359.      Try to lock MUTEX. If the mutex is already locked by someone else,
  6360.      return `#f'.  Else lock the mutex and return `#t'.
  6361.  
  6362.     unlock-mutex
  6363.  
  6364.  -- Scheme Procedure: unlock-mutex mx
  6365.      Unlocks MUTEX if the calling thread owns the lock on MUTEX.
  6366.      Calling unlock-mutex on a mutex not owned by the current thread
  6367.      results in undefined behaviour. Once a mutex has been unlocked,
  6368.      one thread blocked on MUTEX is awakened and grabs the mutex lock.
  6369.      Every call to `lock-mutex' by this thread must be matched with a
  6370.      call to `unlock-mutex'.  Only the last call to `unlock-mutex' will
  6371.      actually unlock the mutex.
  6372.  
  6373.     make-condition-variable
  6374.  
  6375.  -- Scheme Procedure: make-condition-variable
  6376.      Make a new condition variable.
  6377.  
  6378.     wait-condition-variable
  6379.  
  6380.  -- Scheme Procedure: wait-condition-variable cv mx [t]
  6381.      Wait until COND-VAR has been signalled.  While waiting, MUTEX is
  6382.      atomically unlocked (as with `unlock-mutex') and is locked again
  6383.      when this function returns.  When TIME is given, it specifies a
  6384.      point in time where the waiting should be aborted.  It can be
  6385.      either a integer as returned by `current-time' or a pair as
  6386.      returned by `gettimeofday'.  When the waiting is aborted the mutex
  6387.      is locked and `#f' is returned.  When the condition variable is in
  6388.      fact signalled, the mutex is also locked and `#t' is returned.
  6389.  
  6390.     signal-condition-variable
  6391.  
  6392.  -- Scheme Procedure: signal-condition-variable cv
  6393.      Wake up one thread that is waiting for CV
  6394.  
  6395.     broadcast-condition-variable
  6396.  
  6397.  -- Scheme Procedure: broadcast-condition-variable cv
  6398.      Wake up all threads that are waiting for CV.
  6399.  
  6400.     current-thread
  6401.  
  6402.  -- Scheme Procedure: current-thread
  6403.      Return the thread that called this function.
  6404.  
  6405.     all-threads
  6406.  
  6407.  -- Scheme Procedure: all-threads
  6408.      Return a list of all threads.
  6409.  
  6410.     thread-exited?
  6411.  
  6412.  -- Scheme Procedure: thread-exited? thread
  6413.      Return `#t' iff THREAD has exited.
  6414.  
  6415.  
  6416.     catch
  6417.  
  6418.  -- Scheme Procedure: catch key thunk handler [pre_unwind_handler]
  6419.      Invoke THUNK in the dynamic context of HANDLER for exceptions
  6420.      matching KEY.  If thunk throws to the symbol KEY, then HANDLER is
  6421.      invoked this way:
  6422.           (handler key args ...)
  6423.  
  6424.      KEY is a symbol or `#t'.
  6425.  
  6426.      THUNK takes no arguments.  If THUNK returns normally, that is the
  6427.      return value of `catch'.
  6428.  
  6429.      Handler is invoked outside the scope of its own `catch'.  If
  6430.      HANDLER again throws to the same key, a new handler from further
  6431.      up the call chain is invoked.
  6432.  
  6433.      If the key is `#t', then a throw to _any_ symbol will match this
  6434.      call to `catch'.
  6435.  
  6436.      If a PRE-UNWIND-HANDLER is given and THUNK throws an exception
  6437.      that matches KEY, Guile calls the PRE-UNWIND-HANDLER before
  6438.      unwinding the dynamic state and invoking the main HANDLER.
  6439.      PRE-UNWIND-HANDLER should be a procedure with the same signature
  6440.      as HANDLER, that is `(lambda (key . args))'.  It is typically used
  6441.      to save the stack at the point where the exception occurred, but
  6442.      can also query other parts of the dynamic state at that point,
  6443.      such as fluid values.
  6444.  
  6445.      A PRE-UNWIND-HANDLER can exit either normally or non-locally.  If
  6446.      it exits normally, Guile unwinds the stack and dynamic context and
  6447.      then calls the normal (third argument) handler.  If it exits
  6448.      non-locally, that exit determines the continuation.
  6449.  
  6450.     with-throw-handler
  6451.  
  6452.  -- Scheme Procedure: with-throw-handler key thunk handler
  6453.      Add HANDLER to the dynamic context as a throw handler for key KEY,
  6454.      then invoke THUNK.
  6455.  
  6456.     lazy-catch
  6457.  
  6458.  -- Scheme Procedure: lazy-catch key thunk handler
  6459.      This behaves exactly like `catch', except that it does not unwind
  6460.      the stack before invoking HANDLER.  If the HANDLER procedure
  6461.      returns normally, Guile rethrows the same exception again to the
  6462.      next innermost catch, lazy-catch or throw handler.  If the HANDLER
  6463.      exits non-locally, that exit determines the continuation.
  6464.  
  6465.     throw
  6466.  
  6467.  -- Scheme Procedure: throw key . args
  6468.      Invoke the catch form matching KEY, passing ARGS to the HANDLER.
  6469.  
  6470.      KEY is a symbol.  It will match catches of the same symbol or of
  6471.      `#t'.
  6472.  
  6473.      If there is no handler at all, Guile prints an error and then
  6474.      exits.
  6475.  
  6476.     values
  6477.  
  6478.  -- Scheme Procedure: values . args
  6479.      Delivers all of its arguments to its continuation.  Except for
  6480.      continuations created by the `call-with-values' procedure, all
  6481.      continuations take exactly one value.  The effect of passing no
  6482.      value or more than one value to continuations that were not
  6483.      created by `call-with-values' is unspecified.
  6484.  
  6485.     make-variable
  6486.  
  6487.  -- Scheme Procedure: make-variable init
  6488.      Return a variable initialized to value INIT.
  6489.  
  6490.     make-undefined-variable
  6491.  
  6492.  -- Scheme Procedure: make-undefined-variable
  6493.      Return a variable that is initially unbound.
  6494.  
  6495.     variable?
  6496.  
  6497.  -- Scheme Procedure: variable? obj
  6498.      Return `#t' iff OBJ is a variable object, else return `#f'.
  6499.  
  6500.     variable-ref
  6501.  
  6502.  -- Scheme Procedure: variable-ref var
  6503.      Dereference VAR and return its value.  VAR must be a variable
  6504.      object; see `make-variable' and `make-undefined-variable'.
  6505.  
  6506.     variable-set!
  6507.  
  6508.  -- Scheme Procedure: variable-set! var val
  6509.      Set the value of the variable VAR to VAL.  VAR must be a variable
  6510.      object, VAL can be any value. Return an unspecified value.
  6511.  
  6512.     variable-bound?
  6513.  
  6514.  -- Scheme Procedure: variable-bound? var
  6515.      Return `#t' iff VAR is bound to a value.  Throws an error if VAR
  6516.      is not a variable object.
  6517.  
  6518.     vector?
  6519.  
  6520.  -- Scheme Procedure: vector? obj
  6521.      Return `#t' if OBJ is a vector, otherwise return `#f'.
  6522.  
  6523.     list->vector
  6524.  
  6525.  -- Scheme Procedure: list->vector
  6526.      implemented by the C function "scm_vector"
  6527.  
  6528.     vector
  6529.  
  6530.  -- Scheme Procedure: vector . l
  6531.  -- Scheme Procedure: list->vector l
  6532.      Return a newly allocated vector composed of the given arguments.
  6533.      Analogous to `list'.
  6534.  
  6535.           (vector 'a 'b 'c) => #(a b c)
  6536.  
  6537.     make-vector
  6538.  
  6539.  -- Scheme Procedure: make-vector k [fill]
  6540.      Return a newly allocated vector of K elements.  If a second
  6541.      argument is given, then each position is initialized to FILL.
  6542.      Otherwise the initial contents of each position is unspecified.
  6543.  
  6544.     vector-copy
  6545.  
  6546.  -- Scheme Procedure: vector-copy vec
  6547.      Return a copy of VEC.
  6548.  
  6549.     vector->list
  6550.  
  6551.  -- Scheme Procedure: vector->list v
  6552.      Return a newly allocated list composed of the elements of V.
  6553.  
  6554.           (vector->list '#(dah dah didah)) =>  (dah dah didah)
  6555.           (list->vector '(dididit dah)) =>  #(dididit dah)
  6556.  
  6557.     vector-fill!
  6558.  
  6559.  -- Scheme Procedure: vector-fill! v fill
  6560.      Store FILL in every position of VECTOR.  The value returned by
  6561.      `vector-fill!' is unspecified.
  6562.  
  6563.     vector-move-left!
  6564.  
  6565.  -- Scheme Procedure: vector-move-left! vec1 start1 end1 vec2 start2
  6566.      Copy elements from VEC1, positions START1 to END1, to VEC2
  6567.      starting at position START2.  START1 and START2 are inclusive
  6568.      indices; END1 is exclusive.
  6569.  
  6570.      `vector-move-left!' copies elements in leftmost order.  Therefore,
  6571.      in the case where VEC1 and VEC2 refer to the same vector,
  6572.      `vector-move-left!' is usually appropriate when START1 is greater
  6573.      than START2.
  6574.  
  6575.     vector-move-right!
  6576.  
  6577.  -- Scheme Procedure: vector-move-right! vec1 start1 end1 vec2 start2
  6578.      Copy elements from VEC1, positions START1 to END1, to VEC2
  6579.      starting at position START2.  START1 and START2 are inclusive
  6580.      indices; END1 is exclusive.
  6581.  
  6582.      `vector-move-right!' copies elements in rightmost order.
  6583.      Therefore, in the case where VEC1 and VEC2 refer to the same
  6584.      vector, `vector-move-right!' is usually appropriate when START1 is
  6585.      less than START2.
  6586.  
  6587.     generalized-vector?
  6588.  
  6589.  -- Scheme Procedure: generalized-vector? obj
  6590.      Return `#t' if OBJ is a vector, string, bitvector, or uniform
  6591.      numeric vector.
  6592.  
  6593.     generalized-vector-length
  6594.  
  6595.  -- Scheme Procedure: generalized-vector-length v
  6596.      Return the length of the generalized vector V.
  6597.  
  6598.     generalized-vector-ref
  6599.  
  6600.  -- Scheme Procedure: generalized-vector-ref v idx
  6601.      Return the element at index IDX of the generalized vector V.
  6602.  
  6603.     generalized-vector-set!
  6604.  
  6605.  -- Scheme Procedure: generalized-vector-set! v idx val
  6606.      Set the element at index IDX of the generalized vector V to VAL.
  6607.  
  6608.     generalized-vector->list
  6609.  
  6610.  -- Scheme Procedure: generalized-vector->list v
  6611.      Return a new list whose elements are the elements of the
  6612.      generalized vector V.
  6613.  
  6614.     major-version
  6615.  
  6616.  -- Scheme Procedure: major-version
  6617.      Return a string containing Guile's major version number.  E.g.,
  6618.      the 1 in "1.6.5".
  6619.  
  6620.     minor-version
  6621.  
  6622.  -- Scheme Procedure: minor-version
  6623.      Return a string containing Guile's minor version number.  E.g.,
  6624.      the 6 in "1.6.5".
  6625.  
  6626.     micro-version
  6627.  
  6628.  -- Scheme Procedure: micro-version
  6629.      Return a string containing Guile's micro version number.  E.g.,
  6630.      the 5 in "1.6.5".
  6631.  
  6632.     version
  6633.  
  6634.  -- Scheme Procedure: version
  6635.  -- Scheme Procedure: major-version
  6636.  -- Scheme Procedure: minor-version
  6637.  -- Scheme Procedure: micro-version
  6638.      Return a string describing Guile's version number, or its major,
  6639.      minor or micro version number, respectively.
  6640.  
  6641.           (version) => "1.6.0"
  6642.           (major-version) => "1"
  6643.           (minor-version) => "6"
  6644.           (micro-version) => "0"
  6645.  
  6646.     effective-version
  6647.  
  6648.  -- Scheme Procedure: effective-version
  6649.      Return a string describing Guile's effective version number.
  6650.           (version) => "1.6.0"
  6651.           (effective-version) => "1.6"
  6652.           (major-version) => "1"
  6653.           (minor-version) => "6"
  6654.           (micro-version) => "0"
  6655.  
  6656.     make-soft-port
  6657.  
  6658.  -- Scheme Procedure: make-soft-port pv modes
  6659.      Return a port capable of receiving or delivering characters as
  6660.      specified by the MODES string (*note open-file: File Ports.).  PV
  6661.      must be a vector of length 5 or 6.  Its components are as follows:
  6662.  
  6663.        0. procedure accepting one character for output
  6664.  
  6665.        1. procedure accepting a string for output
  6666.  
  6667.        2. thunk for flushing output
  6668.  
  6669.        3. thunk for getting one character
  6670.  
  6671.        4. thunk for closing port (not by garbage collection)
  6672.  
  6673.        5. (if present and not `#f') thunk for computing the number of
  6674.           characters that can be read from the port without blocking.
  6675.  
  6676.      For an output-only port only elements 0, 1, 2, and 4 need be
  6677.      procedures.  For an input-only port only elements 3 and 4 need be
  6678.      procedures.  Thunks 2 and 4 can instead be `#f' if there is no
  6679.      useful operation for them to perform.
  6680.  
  6681.      If thunk 3 returns `#f' or an `eof-object' (*note eof-object?:
  6682.      (r5rs)Input.) it indicates that the port has reached end-of-file.
  6683.      For example:
  6684.  
  6685.           (define stdout (current-output-port))
  6686.           (define p (make-soft-port
  6687.                      (vector
  6688.                       (lambda (c) (write c stdout))
  6689.                       (lambda (s) (display s stdout))
  6690.                       (lambda () (display "." stdout))
  6691.                       (lambda () (char-upcase (read-char)))
  6692.                       (lambda () (display "@" stdout)))
  6693.                      "rw"))
  6694.  
  6695.           (write p p) => #<input-output: soft 8081e20>
  6696.  
  6697.     make-weak-vector
  6698.  
  6699.  -- Scheme Procedure: make-weak-vector size [fill]
  6700.      Return a weak vector with SIZE elements. If the optional argument
  6701.      FILL is given, all entries in the vector will be set to FILL. The
  6702.      default value for FILL is the empty list.
  6703.  
  6704.     list->weak-vector
  6705.  
  6706.  -- Scheme Procedure: list->weak-vector
  6707.      implemented by the C function "scm_weak_vector"
  6708.  
  6709.     weak-vector
  6710.  
  6711.  -- Scheme Procedure: weak-vector . l
  6712.  -- Scheme Procedure: list->weak-vector l
  6713.      Construct a weak vector from a list: `weak-vector' uses the list
  6714.      of its arguments while `list->weak-vector' uses its only argument
  6715.      L (a list) to construct a weak vector the same way `list->vector'
  6716.      would.
  6717.  
  6718.     weak-vector?
  6719.  
  6720.  -- Scheme Procedure: weak-vector? obj
  6721.      Return `#t' if OBJ is a weak vector. Note that all weak hashes are
  6722.      also weak vectors.
  6723.  
  6724.     make-weak-key-alist-vector
  6725.  
  6726.  -- Scheme Procedure: make-weak-key-alist-vector [size]
  6727.  -- Scheme Procedure: make-weak-value-alist-vector size
  6728.  -- Scheme Procedure: make-doubly-weak-alist-vector size
  6729.      Return a weak hash table with SIZE buckets. As with any hash
  6730.      table, choosing a good size for the table requires some caution.
  6731.  
  6732.      You can modify weak hash tables in exactly the same way you would
  6733.      modify regular hash tables. (*note Hash Tables::)
  6734.  
  6735.     make-weak-value-alist-vector
  6736.  
  6737.  -- Scheme Procedure: make-weak-value-alist-vector [size]
  6738.      Return a hash table with weak values with SIZE buckets.  (*note
  6739.      Hash Tables::)
  6740.  
  6741.     make-doubly-weak-alist-vector
  6742.  
  6743.  -- Scheme Procedure: make-doubly-weak-alist-vector size
  6744.      Return a hash table with weak keys and values with SIZE buckets.
  6745.      (*note Hash Tables::)
  6746.  
  6747.     weak-key-alist-vector?
  6748.  
  6749.  -- Scheme Procedure: weak-key-alist-vector? obj
  6750.  -- Scheme Procedure: weak-value-alist-vector? obj
  6751.  -- Scheme Procedure: doubly-weak-alist-vector? obj
  6752.      Return `#t' if OBJ is the specified weak hash table. Note that a
  6753.      doubly weak hash table is neither a weak key nor a weak value hash
  6754.      table.
  6755.  
  6756.     weak-value-alist-vector?
  6757.  
  6758.  -- Scheme Procedure: weak-value-alist-vector? obj
  6759.      Return `#t' if OBJ is a weak value hash table.
  6760.  
  6761.     doubly-weak-alist-vector?
  6762.  
  6763.  -- Scheme Procedure: doubly-weak-alist-vector? obj
  6764.      Return `#t' if OBJ is a doubly weak hash table.
  6765.  
  6766.     array-fill!
  6767.  
  6768.  -- Scheme Procedure: array-fill! ra fill
  6769.      Store FILL in every element of ARRAY.  The value returned is
  6770.      unspecified.
  6771.  
  6772.     array-copy-in-order!
  6773.  
  6774.  -- Scheme Procedure: array-copy-in-order!
  6775.      implemented by the C function "scm_array_copy_x"
  6776.  
  6777.     array-copy!
  6778.  
  6779.  -- Scheme Procedure: array-copy! src dst
  6780.  -- Scheme Procedure: array-copy-in-order! src dst
  6781.      Copy every element from vector or array SOURCE to the
  6782.      corresponding element of DESTINATION.  DESTINATION must have the
  6783.      same rank as SOURCE, and be at least as large in each dimension.
  6784.      The order is unspecified.
  6785.  
  6786.     array-map-in-order!
  6787.  
  6788.  -- Scheme Procedure: array-map-in-order!
  6789.      implemented by the C function "scm_array_map_x"
  6790.  
  6791.     array-map!
  6792.  
  6793.  -- Scheme Procedure: array-map! ra0 proc . lra
  6794.  -- Scheme Procedure: array-map-in-order! ra0 proc . lra
  6795.      ARRAY1, ... must have the same number of dimensions as ARRAY0 and
  6796.      have a range for each index which includes the range for the
  6797.      corresponding index in ARRAY0.  PROC is applied to each tuple of
  6798.      elements of ARRAY1 ... and the result is stored as the
  6799.      corresponding element in ARRAY0.  The value returned is
  6800.      unspecified.  The order of application is unspecified.
  6801.  
  6802.     array-for-each
  6803.  
  6804.  -- Scheme Procedure: array-for-each proc ra0 . lra
  6805.      Apply PROC to each tuple of elements of ARRAY0 ...  in row-major
  6806.      order.  The value returned is unspecified.
  6807.  
  6808.     array-index-map!
  6809.  
  6810.  -- Scheme Procedure: array-index-map! ra proc
  6811.      Apply PROC to the indices of each element of ARRAY in turn,
  6812.      storing the result in the corresponding element.  The value
  6813.      returned and the order of application are unspecified.
  6814.  
  6815.      One can implement ARRAY-INDEXES as
  6816.           (define (array-indexes array)
  6817.               (let ((ra (apply make-array #f (array-shape array))))
  6818.                 (array-index-map! ra (lambda x x))
  6819.                 ra))
  6820.      Another example:
  6821.           (define (apl:index-generator n)
  6822.               (let ((v (make-uniform-vector n 1)))
  6823.                 (array-index-map! v (lambda (i) i))
  6824.                 v))
  6825.  
  6826.     array?
  6827.  
  6828.  -- Scheme Procedure: array? obj [prot]
  6829.      Return `#t' if the OBJ is an array, and `#f' if not.
  6830.  
  6831.     typed-array?
  6832.  
  6833.  -- Scheme Procedure: typed-array? obj type
  6834.      Return `#t' if the OBJ is an array of type TYPE, and `#f' if not.
  6835.  
  6836.     array-rank
  6837.  
  6838.  -- Scheme Procedure: array-rank array
  6839.      Return the number of dimensions of the array ARRAY.
  6840.  
  6841.  
  6842.     array-dimensions
  6843.  
  6844.  -- Scheme Procedure: array-dimensions ra
  6845.      `array-dimensions' is similar to `array-shape' but replaces
  6846.      elements with a `0' minimum with one greater than the maximum. So:
  6847.           (array-dimensions (make-array 'foo '(-1 3) 5)) => ((-1 3) 5)
  6848.  
  6849.     shared-array-root
  6850.  
  6851.  -- Scheme Procedure: shared-array-root ra
  6852.      Return the root vector of a shared array.
  6853.  
  6854.     shared-array-offset
  6855.  
  6856.  -- Scheme Procedure: shared-array-offset ra
  6857.      Return the root vector index of the first element in the array.
  6858.  
  6859.     shared-array-increments
  6860.  
  6861.  -- Scheme Procedure: shared-array-increments ra
  6862.      For each dimension, return the distance between elements in the
  6863.      root vector.
  6864.  
  6865.     make-typed-array
  6866.  
  6867.  -- Scheme Procedure: make-typed-array type fill . bounds
  6868.      Create and return an array of type TYPE.
  6869.  
  6870.     make-array
  6871.  
  6872.  -- Scheme Procedure: make-array fill . bounds
  6873.      Create and return an array.
  6874.  
  6875.     dimensions->uniform-array
  6876.  
  6877.  -- Scheme Procedure: dimensions->uniform-array dims prot [fill]
  6878.  -- Scheme Procedure: make-uniform-vector length prototype [fill]
  6879.      Create and return a uniform array or vector of type corresponding
  6880.      to PROTOTYPE with dimensions DIMS or length LENGTH.  If FILL is
  6881.      supplied, it's used to fill the array, otherwise PROTOTYPE is used.
  6882.  
  6883.     make-shared-array
  6884.  
  6885.  -- Scheme Procedure: make-shared-array oldra mapfunc . dims
  6886.      `make-shared-array' can be used to create shared subarrays of other
  6887.      arrays.  The MAPPER is a function that translates coordinates in
  6888.      the new array into coordinates in the old array.  A MAPPER must be
  6889.      linear, and its range must stay within the bounds of the old
  6890.      array, but it can be otherwise arbitrary.  A simple example:
  6891.           (define fred (make-array #f 8 8))
  6892.           (define freds-diagonal
  6893.             (make-shared-array fred (lambda (i) (list i i)) 8))
  6894.           (array-set! freds-diagonal 'foo 3)
  6895.           (array-ref fred 3 3) => foo
  6896.           (define freds-center
  6897.             (make-shared-array fred (lambda (i j) (list (+ 3 i) (+ 3 j))) 2 2))
  6898.           (array-ref freds-center 0 0) => foo
  6899.  
  6900.     transpose-array
  6901.  
  6902.  -- Scheme Procedure: transpose-array ra . args
  6903.      Return an array sharing contents with ARRAY, but with dimensions
  6904.      arranged in a different order.  There must be one DIM argument for
  6905.      each dimension of ARRAY.  DIM0, DIM1, ... should be integers
  6906.      between 0 and the rank of the array to be returned.  Each integer
  6907.      in that range must appear at least once in the argument list.
  6908.  
  6909.      The values of DIM0, DIM1, ... correspond to dimensions in the
  6910.      array to be returned, their positions in the argument list to
  6911.      dimensions of ARRAY.  Several DIMs may have the same value, in
  6912.      which case the returned array will have smaller rank than ARRAY.
  6913.  
  6914.           (transpose-array '#2((a b) (c d)) 1 0) => #2((a c) (b d))
  6915.           (transpose-array '#2((a b) (c d)) 0 0) => #1(a d)
  6916.           (transpose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1 1 0) =>
  6917.                           #2((a 4) (b 5) (c 6))
  6918.  
  6919.     enclose-array
  6920.  
  6921.  -- Scheme Procedure: enclose-array ra . axes
  6922.      DIM0, DIM1 ... should be nonnegative integers less than the rank
  6923.      of ARRAY.  ENCLOSE-ARRAY returns an array resembling an array of
  6924.      shared arrays.  The dimensions of each shared array are the same
  6925.      as the DIMth dimensions of the original array, the dimensions of
  6926.      the outer array are the same as those of the original array that
  6927.      did not match a DIM.
  6928.  
  6929.      An enclosed array is not a general Scheme array.  Its elements may
  6930.      not be set using `array-set!'.  Two references to the same element
  6931.      of an enclosed array will be `equal?' but will not in general be
  6932.      `eq?'.  The value returned by ARRAY-PROTOTYPE when given an
  6933.      enclosed array is unspecified.
  6934.  
  6935.      examples:
  6936.           (enclose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1) =>
  6937.              #<enclosed-array (#1(a d) #1(b e) #1(c f)) (#1(1 4) #1(2 5) #1(3 6))>
  6938.  
  6939.           (enclose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1 0) =>
  6940.              #<enclosed-array #2((a 1) (d 4)) #2((b 2) (e 5)) #2((c 3) (f 6))>
  6941.  
  6942.     array-in-bounds?
  6943.  
  6944.  -- Scheme Procedure: array-in-bounds? v . args
  6945.      Return `#t' if its arguments would be acceptable to `array-ref'.
  6946.  
  6947.     array-ref
  6948.  
  6949.  -- Scheme Procedure: array-ref v . args
  6950.      Return the element at the `(index1, index2)' element in ARRAY.
  6951.  
  6952.     array-set!
  6953.  
  6954.  -- Scheme Procedure: array-set! v obj . args
  6955.      Set the element at the `(index1, index2)' element in ARRAY to
  6956.      NEW-VALUE.  The value returned by array-set! is unspecified.
  6957.  
  6958.     array-contents
  6959.  
  6960.  -- Scheme Procedure: array-contents ra [strict]
  6961.      If ARRAY may be "unrolled" into a one dimensional shared array
  6962.      without changing their order (last subscript changing fastest),
  6963.      then `array-contents' returns that shared array, otherwise it
  6964.      returns `#f'.  All arrays made by MAKE-ARRAY and
  6965.      MAKE-UNIFORM-ARRAY may be unrolled, some arrays made by
  6966.      MAKE-SHARED-ARRAY may not be.
  6967.  
  6968.      If the optional argument STRICT is provided, a shared array will
  6969.      be returned only if its elements are stored internally contiguous
  6970.      in memory.
  6971.  
  6972.     uniform-array-read!
  6973.  
  6974.  -- Scheme Procedure: uniform-array-read! ura [port_or_fd [start [end]]]
  6975.  -- Scheme Procedure: uniform-vector-read! uve [port-or-fdes] [start]
  6976.           [end]
  6977.      Attempt to read all elements of URA, in lexicographic order, as
  6978.      binary objects from PORT-OR-FDES.  If an end of file is
  6979.      encountered, the objects up to that point are put into URA
  6980.      (starting at the beginning) and the remainder of the array is
  6981.      unchanged.
  6982.  
  6983.      The optional arguments START and END allow a specified region of a
  6984.      vector (or linearized array) to be read, leaving the remainder of
  6985.      the vector unchanged.
  6986.  
  6987.      `uniform-array-read!' returns the number of objects read.
  6988.      PORT-OR-FDES may be omitted, in which case it defaults to the value
  6989.      returned by `(current-input-port)'.
  6990.  
  6991.     uniform-array-write
  6992.  
  6993.  -- Scheme Procedure: uniform-array-write ura [port_or_fd [start [end]]]
  6994.      Writes all elements of URA as binary objects to PORT-OR-FDES.
  6995.  
  6996.      The optional arguments START and END allow a specified region of a
  6997.      vector (or linearized array) to be written.
  6998.  
  6999.      The number of objects actually written is returned.  PORT-OR-FDES
  7000.      may be omitted, in which case it defaults to the value returned by
  7001.      `(current-output-port)'.
  7002.  
  7003.     bitvector?
  7004.  
  7005.  -- Scheme Procedure: bitvector? obj
  7006.      Return `#t' when OBJ is a bitvector, else return `#f'.
  7007.  
  7008.     make-bitvector
  7009.  
  7010.  -- Scheme Procedure: make-bitvector len [fill]
  7011.      Create a new bitvector of length LEN and optionally initialize all
  7012.      elements to FILL.
  7013.  
  7014.     bitvector
  7015.  
  7016.  -- Scheme Procedure: bitvector . bits
  7017.      Create a new bitvector with the arguments as elements.
  7018.  
  7019.     bitvector-length
  7020.  
  7021.  -- Scheme Procedure: bitvector-length vec
  7022.      Return the length of the bitvector VEC.
  7023.  
  7024.     bitvector-ref
  7025.  
  7026.  -- Scheme Procedure: bitvector-ref vec idx
  7027.      Return the element at index IDX of the bitvector VEC.
  7028.  
  7029.     bitvector-set!
  7030.  
  7031.  -- Scheme Procedure: bitvector-set! vec idx val
  7032.      Set the element at index IDX of the bitvector VEC when VAL is
  7033.      true, else clear it.
  7034.  
  7035.     bitvector-fill!
  7036.  
  7037.  -- Scheme Procedure: bitvector-fill! vec val
  7038.      Set all elements of the bitvector VEC when VAL is true, else clear
  7039.      them.
  7040.  
  7041.     list->bitvector
  7042.  
  7043.  -- Scheme Procedure: list->bitvector list
  7044.      Return a new bitvector initialized with the elements of LIST.
  7045.  
  7046.     bitvector->list
  7047.  
  7048.  -- Scheme Procedure: bitvector->list vec
  7049.      Return a new list initialized with the elements of the bitvector
  7050.      VEC.
  7051.  
  7052.     bit-count
  7053.  
  7054.  -- Scheme Procedure: bit-count b bitvector
  7055.      Return the number of occurrences of the boolean B in BITVECTOR.
  7056.  
  7057.     bit-position
  7058.  
  7059.  -- Scheme Procedure: bit-position item v k
  7060.      Return the index of the first occurrance of ITEM in bit vector V,
  7061.      starting from K.  If there is no ITEM entry between K and the end
  7062.      of BITVECTOR, then return `#f'.  For example,
  7063.  
  7064.           (bit-position #t #*000101 0)  => 3
  7065.           (bit-position #f #*0001111 3) => #f
  7066.  
  7067.     bit-set*!
  7068.  
  7069.  -- Scheme Procedure: bit-set*! v kv obj
  7070.      Set entries of bit vector V to OBJ, with KV selecting the entries
  7071.      to change.  The return value is unspecified.
  7072.  
  7073.      If KV is a bit vector, then those entries where it has `#t' are
  7074.      the ones in V which are set to OBJ.  KV and V must be the same
  7075.      length.  When OBJ is `#t' it's like KV is OR'ed into V.  Or when
  7076.      OBJ is `#f' it can be seen as an ANDNOT.
  7077.  
  7078.           (define bv #*01000010)
  7079.           (bit-set*! bv #*10010001 #t)
  7080.           bv
  7081.           => #*11010011
  7082.  
  7083.      If KV is a u32vector, then its elements are indices into V which
  7084.      are set to OBJ.
  7085.  
  7086.           (define bv #*01000010)
  7087.           (bit-set*! bv #u32(5 2 7) #t)
  7088.           bv
  7089.           => #*01100111
  7090.  
  7091.     bit-count*
  7092.  
  7093.  -- Scheme Procedure: bit-count* v kv obj
  7094.      Return a count of how many entries in bit vector V are equal to
  7095.      OBJ, with KV selecting the entries to consider.
  7096.  
  7097.      If KV is a bit vector, then those entries where it has `#t' are
  7098.      the ones in V which are considered.  KV and V must be the same
  7099.      length.
  7100.  
  7101.      If KV is a u32vector, then it contains the indexes in V to
  7102.      consider.
  7103.  
  7104.      For example,
  7105.  
  7106.           (bit-count* #*01110111 #*11001101 #t) => 3
  7107.           (bit-count* #*01110111 #u32(7 0 4) #f)  => 2
  7108.  
  7109.     bit-invert!
  7110.  
  7111.  -- Scheme Procedure: bit-invert! v
  7112.      Modify the bit vector V by replacing each element with its
  7113.      negation.
  7114.  
  7115.     array->list
  7116.  
  7117.  -- Scheme Procedure: array->list v
  7118.      Return a list consisting of all the elements, in order, of ARRAY.
  7119.  
  7120.     list->typed-array
  7121.  
  7122.  -- Scheme Procedure: list->typed-array type shape lst
  7123.      Return an array of the type TYPE with elements the same as those
  7124.      of LST.
  7125.  
  7126.      The argument SHAPE determines the number of dimensions of the
  7127.      array and their shape.  It is either an exact integer, giving the
  7128.      number of dimensions directly, or a list whose length specifies
  7129.      the number of dimensions and each element specified the lower and
  7130.      optionally the upper bound of the corresponding dimension.  When
  7131.      the element is list of two elements, these elements give the lower
  7132.      and upper bounds.  When it is an exact integer, it gives only the
  7133.      lower bound.
  7134.  
  7135.     list->array
  7136.  
  7137.  -- Scheme Procedure: list->array ndim lst
  7138.      Return an array with elements the same as those of LST.
  7139.  
  7140.     list->uniform-array
  7141.  
  7142.  -- Scheme Procedure: list->uniform-array ndim prot lst
  7143.      Return a uniform array of the type indicated by prototype PROT
  7144.      with elements the same as those of LST.  Elements must be of the
  7145.      appropriate type, no coercions are done.
  7146.  
  7147.      The argument NDIM determines the number of dimensions of the
  7148.      array.  It is either an exact integer, giving the number directly,
  7149.      or a list of exact integers, whose length specifies the number of
  7150.      dimensions and each element is the lower index bound of its
  7151.      dimension.
  7152.  
  7153.     array-type
  7154.  
  7155.  -- Scheme Procedure: array-type ra
  7156.  
  7157.     array-prototype
  7158.  
  7159.  -- Scheme Procedure: array-prototype ra
  7160.      Return an object that would produce an array of the same type as
  7161.      ARRAY, if used as the PROTOTYPE for `make-uniform-array'.
  7162.  
  7163.     dynamic-link
  7164.  
  7165.  -- Scheme Procedure: dynamic-link filename
  7166.      Find the shared object (shared library) denoted by FILENAME and
  7167.      link it into the running Guile application.  The returned scheme
  7168.      object is a "handle" for the library which can be passed to
  7169.      `dynamic-func', `dynamic-call' etc.
  7170.  
  7171.      Searching for object files is system dependent.  Normally, if
  7172.      FILENAME does have an explicit directory it will be searched for
  7173.      in locations such as `/usr/lib' and `/usr/local/lib'.
  7174.  
  7175.     dynamic-object?
  7176.  
  7177.  -- Scheme Procedure: dynamic-object? obj
  7178.      Return `#t' if OBJ is a dynamic object handle, or `#f' otherwise.
  7179.  
  7180.     dynamic-unlink
  7181.  
  7182.  -- Scheme Procedure: dynamic-unlink dobj
  7183.      Unlink a dynamic object from the application, if possible.  The
  7184.      object must have been linked by `dynamic-link', with DOBJ the
  7185.      corresponding handle.  After this procedure is called, the handle
  7186.      can no longer be used to access the object.
  7187.  
  7188.     dynamic-func
  7189.  
  7190.  -- Scheme Procedure: dynamic-func name dobj
  7191.      Return a "handle" for the function NAME in the shared object
  7192.      referred to by DOBJ.  The handle can be passed to `dynamic-call'
  7193.      to actually call the function.
  7194.  
  7195.      Regardless whether your C compiler prepends an underscore `_' to
  7196.      the global names in a program, you should *not* include this
  7197.      underscore in NAME since it will be added automatically when
  7198.      necessary.
  7199.  
  7200.     dynamic-call
  7201.  
  7202.  -- Scheme Procedure: dynamic-call func dobj
  7203.      Call a C function in a dynamic object.  Two styles of invocation
  7204.      are supported:
  7205.  
  7206.         * FUNC can be a function handle returned by `dynamic-func'.  In
  7207.           this case DOBJ is ignored
  7208.  
  7209.         * FUNC can be a string with the name of the function to call,
  7210.           with DOBJ the handle of the dynamic object in which to find
  7211.           the function.  This is equivalent to
  7212.  
  7213.                (dynamic-call (dynamic-func FUNC DOBJ) #f)
  7214.  
  7215.      In either case, the function is passed no arguments and its return
  7216.      value is ignored.
  7217.  
  7218.     dynamic-args-call
  7219.  
  7220.  -- Scheme Procedure: dynamic-args-call func dobj args
  7221.      Call the C function indicated by FUNC and DOBJ, just like
  7222.      `dynamic-call', but pass it some arguments and return its return
  7223.      value.  The C function is expected to take two arguments and
  7224.      return an `int', just like `main':
  7225.           int c_func (int argc, char **argv);
  7226.  
  7227.      The parameter ARGS must be a list of strings and is converted into
  7228.      an array of `char *'.  The array is passed in ARGV and its size in
  7229.      ARGC.  The return value is converted to a Scheme number and
  7230.      returned from the call to `dynamic-args-call'.
  7231.  
  7232.     chown
  7233.  
  7234.  -- Scheme Procedure: chown object owner group
  7235.      Change the ownership and group of the file referred to by OBJECT to
  7236.      the integer values OWNER and GROUP.  OBJECT can be a string
  7237.      containing a file name or, if the platform supports fchown, a port
  7238.      or integer file descriptor which is open on the file.  The return
  7239.      value is unspecified.
  7240.  
  7241.      If OBJECT is a symbolic link, either the ownership of the link or
  7242.      the ownership of the referenced file will be changed depending on
  7243.      the operating system (lchown is unsupported at present).  If OWNER
  7244.      or GROUP is specified as `-1', then that ID is not changed.
  7245.  
  7246.     chmod
  7247.  
  7248.  -- Scheme Procedure: chmod object mode
  7249.      Changes the permissions of the file referred to by OBJ.  OBJ can
  7250.      be a string containing a file name or a port or integer file
  7251.      descriptor which is open on a file (in which case `fchmod' is used
  7252.      as the underlying system call).  MODE specifies the new
  7253.      permissions as a decimal number, e.g., `(chmod "foo" #o755)'.  The
  7254.      return value is unspecified.
  7255.  
  7256.     umask
  7257.  
  7258.  -- Scheme Procedure: umask [mode]
  7259.      If MODE is omitted, returns a decimal number representing the
  7260.      current file creation mask.  Otherwise the file creation mask is
  7261.      set to MODE and the previous value is returned.
  7262.  
  7263.      E.g., `(umask #o022)' sets the mask to octal 22, decimal 18.
  7264.  
  7265.     open-fdes
  7266.  
  7267.  -- Scheme Procedure: open-fdes path flags [mode]
  7268.      Similar to `open' but return a file descriptor instead of a port.
  7269.  
  7270.     open
  7271.  
  7272.  -- Scheme Procedure: open path flags [mode]
  7273.      Open the file named by PATH for reading and/or writing.  FLAGS is
  7274.      an integer specifying how the file should be opened.  MODE is an
  7275.      integer specifying the permission bits of the file, if it needs to
  7276.      be created, before the umask is applied.  The default is 666 (Unix
  7277.      itself has no default).
  7278.  
  7279.      FLAGS can be constructed by combining variables using `logior'.
  7280.      Basic flags are:
  7281.  
  7282.       -- Variable: O_RDONLY
  7283.           Open the file read-only.
  7284.  
  7285.       -- Variable: O_WRONLY
  7286.           Open the file write-only.
  7287.  
  7288.       -- Variable: O_RDWR
  7289.           Open the file read/write.
  7290.  
  7291.       -- Variable: O_APPEND
  7292.           Append to the file instead of truncating.
  7293.  
  7294.       -- Variable: O_CREAT
  7295.           Create the file if it does not already exist.
  7296.  
  7297.      See the Unix documentation of the `open' system call for
  7298.      additional flags.
  7299.  
  7300.     close
  7301.  
  7302.  -- Scheme Procedure: close fd_or_port
  7303.      Similar to close-port (*note close-port: Closing.), but also works
  7304.      on file descriptors.  A side effect of closing a file descriptor
  7305.      is that any ports using that file descriptor are moved to a
  7306.      different file descriptor and have their revealed counts set to
  7307.      zero.
  7308.  
  7309.     close-fdes
  7310.  
  7311.  -- Scheme Procedure: close-fdes fd
  7312.      A simple wrapper for the `close' system call.  Close file
  7313.      descriptor FD, which must be an integer.  Unlike close (*note
  7314.      close: Ports and File Descriptors.), the file descriptor will be
  7315.      closed even if a port is using it.  The return value is
  7316.      unspecified.
  7317.  
  7318.     stat
  7319.  
  7320.  -- Scheme Procedure: stat object
  7321.      Return an object containing various information about the file
  7322.      determined by OBJ.  OBJ can be a string containing a file name or
  7323.      a port or integer file descriptor which is open on a file (in
  7324.      which case `fstat' is used as the underlying system call).
  7325.  
  7326.      The object returned by `stat' can be passed as a single parameter
  7327.      to the following procedures, all of which return integers:
  7328.  
  7329.     `stat:dev'
  7330.           The device containing the file.
  7331.  
  7332.     `stat:ino'
  7333.           The file serial number, which distinguishes this file from all
  7334.           other files on the same device.
  7335.  
  7336.     `stat:mode'
  7337.           The mode of the file.  This includes file type information and
  7338.           the file permission bits.  See `stat:type' and `stat:perms'
  7339.           below.
  7340.  
  7341.     `stat:nlink'
  7342.           The number of hard links to the file.
  7343.  
  7344.     `stat:uid'
  7345.           The user ID of the file's owner.
  7346.  
  7347.     `stat:gid'
  7348.           The group ID of the file.
  7349.  
  7350.     `stat:rdev'
  7351.           Device ID; this entry is defined only for character or block
  7352.           special files.
  7353.  
  7354.     `stat:size'
  7355.           The size of a regular file in bytes.
  7356.  
  7357.     `stat:atime'
  7358.           The last access time for the file.
  7359.  
  7360.     `stat:mtime'
  7361.           The last modification time for the file.
  7362.  
  7363.     `stat:ctime'
  7364.           The last modification time for the attributes of the file.
  7365.  
  7366.     `stat:blksize'
  7367.           The optimal block size for reading or writing the file, in
  7368.           bytes.
  7369.  
  7370.     `stat:blocks'
  7371.           The amount of disk space that the file occupies measured in
  7372.           units of 512 byte blocks.
  7373.  
  7374.      In addition, the following procedures return the information from
  7375.      stat:mode in a more convenient form:
  7376.  
  7377.     `stat:type'
  7378.           A symbol representing the type of file.  Possible values are
  7379.           regular, directory, symlink, block-special, char-special,
  7380.           fifo, socket and unknown
  7381.  
  7382.     `stat:perms'
  7383.           An integer representing the access permission bits.
  7384.  
  7385.     link
  7386.  
  7387.  -- Scheme Procedure: link oldpath newpath
  7388.      Creates a new name NEWPATH in the file system for the file named
  7389.      by OLDPATH.  If OLDPATH is a symbolic link, the link may or may
  7390.      not be followed depending on the system.
  7391.  
  7392.     rename-file
  7393.  
  7394.  -- Scheme Procedure: rename-file oldname newname
  7395.      Renames the file specified by OLDNAME to NEWNAME.  The return
  7396.      value is unspecified.
  7397.  
  7398.     delete-file
  7399.  
  7400.  -- Scheme Procedure: delete-file str
  7401.      Deletes (or "unlinks") the file specified by PATH.
  7402.  
  7403.     mkdir
  7404.  
  7405.  -- Scheme Procedure: mkdir path [mode]
  7406.      Create a new directory named by PATH.  If MODE is omitted then the
  7407.      permissions of the directory file are set using the current umask.
  7408.      Otherwise they are set to the decimal value specified with MODE.
  7409.      The return value is unspecified.
  7410.  
  7411.     rmdir
  7412.  
  7413.  -- Scheme Procedure: rmdir path
  7414.      Remove the existing directory named by PATH.  The directory must
  7415.      be empty for this to succeed.  The return value is unspecified.
  7416.  
  7417.     directory-stream?
  7418.  
  7419.  -- Scheme Procedure: directory-stream? obj
  7420.      Return a boolean indicating whether OBJECT is a directory stream
  7421.      as returned by `opendir'.
  7422.  
  7423.     opendir
  7424.  
  7425.  -- Scheme Procedure: opendir dirname
  7426.      Open the directory specified by PATH and return a directory stream.
  7427.  
  7428.     readdir
  7429.  
  7430.  -- Scheme Procedure: readdir port
  7431.      Return (as a string) the next directory entry from the directory
  7432.      stream STREAM.  If there is no remaining entry to be read then the
  7433.      end of file object is returned.
  7434.  
  7435.     rewinddir
  7436.  
  7437.  -- Scheme Procedure: rewinddir port
  7438.      Reset the directory port STREAM so that the next call to `readdir'
  7439.      will return the first directory entry.
  7440.  
  7441.     closedir
  7442.  
  7443.  -- Scheme Procedure: closedir port
  7444.      Close the directory stream STREAM.  The return value is
  7445.      unspecified.
  7446.  
  7447.     chdir
  7448.  
  7449.  -- Scheme Procedure: chdir str
  7450.      Change the current working directory to PATH.  The return value is
  7451.      unspecified.
  7452.  
  7453.     getcwd
  7454.  
  7455.  -- Scheme Procedure: getcwd
  7456.      Return the name of the current working directory.
  7457.  
  7458.     select
  7459.  
  7460.  -- Scheme Procedure: select reads writes excepts [secs [usecs]]
  7461.      This procedure has a variety of uses: waiting for the ability to
  7462.      provide input, accept output, or the existence of exceptional
  7463.      conditions on a collection of ports or file descriptors, or
  7464.      waiting for a timeout to occur.  It also returns if interrupted by
  7465.      a signal.
  7466.  
  7467.      READS, WRITES and EXCEPTS can be lists or vectors, with each
  7468.      member a port or a file descriptor.  The value returned is a list
  7469.      of three corresponding lists or vectors containing only the
  7470.      members which meet the specified requirement.  The ability of port
  7471.      buffers to provide input or accept output is taken into account.
  7472.      Ordering of the input lists or vectors is not preserved.
  7473.  
  7474.      The optional arguments SECS and USECS specify the timeout.  Either
  7475.      SECS can be specified alone, as either an integer or a real
  7476.      number, or both SECS and USECS can be specified as integers, in
  7477.      which case USECS is an additional timeout expressed in
  7478.      microseconds.  If SECS is omitted or is `#f' then select will wait
  7479.      for as long as it takes for one of the other conditions to be
  7480.      satisfied.
  7481.  
  7482.      The scsh version of `select' differs as follows: Only vectors are
  7483.      accepted for the first three arguments.  The USECS argument is not
  7484.      supported.  Multiple values are returned instead of a list.
  7485.      Duplicates in the input vectors appear only once in output.  An
  7486.      additional `select!' interface is provided.
  7487.  
  7488.     fcntl
  7489.  
  7490.  -- Scheme Procedure: fcntl object cmd [value]
  7491.      Apply COMMAND to the specified file descriptor or the underlying
  7492.      file descriptor of the specified port.  VALUE is an optional
  7493.      integer argument.
  7494.  
  7495.      Values for COMMAND are:
  7496.  
  7497.     `F_DUPFD'
  7498.           Duplicate a file descriptor
  7499.  
  7500.     `F_GETFD'
  7501.           Get flags associated with the file descriptor.
  7502.  
  7503.     `F_SETFD'
  7504.           Set flags associated with the file descriptor to VALUE.
  7505.  
  7506.     `F_GETFL'
  7507.           Get flags associated with the open file.
  7508.  
  7509.     `F_SETFL'
  7510.           Set flags associated with the open file to VALUE
  7511.  
  7512.     `F_GETOWN'
  7513.           Get the process ID of a socket's owner, for `SIGIO' signals.
  7514.  
  7515.     `F_SETOWN'
  7516.           Set the process that owns a socket to VALUE, for `SIGIO'
  7517.           signals.
  7518.  
  7519.     `FD_CLOEXEC'
  7520.           The value used to indicate the "close on exec" flag with
  7521.           `F_GETFL' or `F_SETFL'.
  7522.  
  7523.     fsync
  7524.  
  7525.  -- Scheme Procedure: fsync object
  7526.      Copies any unwritten data for the specified output file descriptor
  7527.      to disk.  If PORT/FD is a port, its buffer is flushed before the
  7528.      underlying file descriptor is fsync'd.  The return value is
  7529.      unspecified.
  7530.  
  7531.     symlink
  7532.  
  7533.  -- Scheme Procedure: symlink oldpath newpath
  7534.      Create a symbolic link named PATH-TO with the value (i.e.,
  7535.      pointing to) PATH-FROM.  The return value is unspecified.
  7536.  
  7537.     readlink
  7538.  
  7539.  -- Scheme Procedure: readlink path
  7540.      Return the value of the symbolic link named by PATH (a string),
  7541.      i.e., the file that the link points to.
  7542.  
  7543.     lstat
  7544.  
  7545.  -- Scheme Procedure: lstat str
  7546.      Similar to `stat', but does not follow symbolic links, i.e., it
  7547.      will return information about a symbolic link itself, not the file
  7548.      it points to.  PATH must be a string.
  7549.  
  7550.     copy-file
  7551.  
  7552.  -- Scheme Procedure: copy-file oldfile newfile
  7553.      Copy the file specified by PATH-FROM to PATH-TO.  The return value
  7554.      is unspecified.
  7555.  
  7556.     dirname
  7557.  
  7558.  -- Scheme Procedure: dirname filename
  7559.      Return the directory name component of the file name FILENAME. If
  7560.      FILENAME does not contain a directory component, `.' is returned.
  7561.  
  7562.     basename
  7563.  
  7564.  -- Scheme Procedure: basename filename [suffix]
  7565.      Return the base name of the file name FILENAME. The base name is
  7566.      the file name without any directory components.  If SUFFIX is
  7567.      provided, and is equal to the end of BASENAME, it is removed also.
  7568.  
  7569.     pipe
  7570.  
  7571.  -- Scheme Procedure: pipe
  7572.      Return a newly created pipe: a pair of ports which are linked
  7573.      together on the local machine.  The _car_ is the input port and
  7574.      the _cdr_ is the output port.  Data written (and flushed) to the
  7575.      output port can be read from the input port.  Pipes are commonly
  7576.      used for communication with a newly forked child process.  The
  7577.      need to flush the output port can be avoided by making it
  7578.      unbuffered using `setvbuf'.
  7579.  
  7580.      Writes occur atomically provided the size of the data in bytes is
  7581.      not greater than the value of `PIPE_BUF'.  Note that the output
  7582.      port is likely to block if too much data (typically equal to
  7583.      `PIPE_BUF') has been written but not yet read from the input port.
  7584.  
  7585.     getgroups
  7586.  
  7587.  -- Scheme Procedure: getgroups
  7588.      Return a vector of integers representing the current supplementary
  7589.      group IDs.
  7590.  
  7591.     setgroups
  7592.  
  7593.  -- Scheme Procedure: setgroups group_vec
  7594.      Set the current set of supplementary group IDs to the integers in
  7595.      the given vector VEC.  The return value is unspecified.
  7596.  
  7597.      Generally only the superuser can set the process group IDs.
  7598.  
  7599.     getpw
  7600.  
  7601.  -- Scheme Procedure: getpw [user]
  7602.      Look up an entry in the user database.  OBJ can be an integer, a
  7603.      string, or omitted, giving the behaviour of getpwuid, getpwnam or
  7604.      getpwent respectively.
  7605.  
  7606.     setpw
  7607.  
  7608.  -- Scheme Procedure: setpw [arg]
  7609.      If called with a true argument, initialize or reset the password
  7610.      data stream.  Otherwise, close the stream.  The `setpwent' and
  7611.      `endpwent' procedures are implemented on top of this.
  7612.  
  7613.     getgr
  7614.  
  7615.  -- Scheme Procedure: getgr [name]
  7616.      Look up an entry in the group database.  OBJ can be an integer, a
  7617.      string, or omitted, giving the behaviour of getgrgid, getgrnam or
  7618.      getgrent respectively.
  7619.  
  7620.     setgr
  7621.  
  7622.  -- Scheme Procedure: setgr [arg]
  7623.      If called with a true argument, initialize or reset the group data
  7624.      stream.  Otherwise, close the stream.  The `setgrent' and
  7625.      `endgrent' procedures are implemented on top of this.
  7626.  
  7627.     kill
  7628.  
  7629.  -- Scheme Procedure: kill pid sig
  7630.      Sends a signal to the specified process or group of processes.
  7631.  
  7632.      PID specifies the processes to which the signal is sent:
  7633.  
  7634.     PID greater than 0
  7635.           The process whose identifier is PID.
  7636.  
  7637.     PID equal to 0
  7638.           All processes in the current process group.
  7639.  
  7640.     PID less than -1
  7641.           The process group whose identifier is -PID
  7642.  
  7643.     PID equal to -1
  7644.           If the process is privileged, all processes except for some
  7645.           special system processes.  Otherwise, all processes with the
  7646.           current effective user ID.
  7647.  
  7648.      SIG should be specified using a variable corresponding to the Unix
  7649.      symbolic name, e.g.,
  7650.  
  7651.       -- Variable: SIGHUP
  7652.           Hang-up signal.
  7653.  
  7654.       -- Variable: SIGINT
  7655.           Interrupt signal.
  7656.  
  7657.     waitpid
  7658.  
  7659.  -- Scheme Procedure: waitpid pid [options]
  7660.      This procedure collects status information from a child process
  7661.      which has terminated or (optionally) stopped.  Normally it will
  7662.      suspend the calling process until this can be done.  If more than
  7663.      one child process is eligible then one will be chosen by the
  7664.      operating system.
  7665.  
  7666.      The value of PID determines the behaviour:
  7667.  
  7668.     PID greater than 0
  7669.           Request status information from the specified child process.
  7670.  
  7671.     PID equal to -1 or WAIT_ANY
  7672.           Request status information for any child process.
  7673.  
  7674.     PID equal to 0 or WAIT_MYPGRP
  7675.           Request status information for any child process in the
  7676.           current process group.
  7677.  
  7678.     PID less than -1
  7679.           Request status information for any child process whose
  7680.           process group ID is -PID.
  7681.  
  7682.      The OPTIONS argument, if supplied, should be the bitwise OR of the
  7683.      values of zero or more of the following variables:
  7684.  
  7685.       -- Variable: WNOHANG
  7686.           Return immediately even if there are no child processes to be
  7687.           collected.
  7688.  
  7689.       -- Variable: WUNTRACED
  7690.           Report status information for stopped processes as well as
  7691.           terminated processes.
  7692.  
  7693.      The return value is a pair containing:
  7694.  
  7695.        1. The process ID of the child process, or 0 if `WNOHANG' was
  7696.           specified and no process was collected.
  7697.  
  7698.        2. The integer status value.
  7699.  
  7700.     status:exit-val
  7701.  
  7702.  -- Scheme Procedure: status:exit-val status
  7703.      Return the exit status value, as would be set if a process ended
  7704.      normally through a call to `exit' or `_exit', if any, otherwise
  7705.      `#f'.
  7706.  
  7707.     status:term-sig
  7708.  
  7709.  -- Scheme Procedure: status:term-sig status
  7710.      Return the signal number which terminated the process, if any,
  7711.      otherwise `#f'.
  7712.  
  7713.     status:stop-sig
  7714.  
  7715.  -- Scheme Procedure: status:stop-sig status
  7716.      Return the signal number which stopped the process, if any,
  7717.      otherwise `#f'.
  7718.  
  7719.     getppid
  7720.  
  7721.  -- Scheme Procedure: getppid
  7722.      Return an integer representing the process ID of the parent
  7723.      process.
  7724.  
  7725.     getuid
  7726.  
  7727.  -- Scheme Procedure: getuid
  7728.      Return an integer representing the current real user ID.
  7729.  
  7730.     getgid
  7731.  
  7732.  -- Scheme Procedure: getgid
  7733.      Return an integer representing the current real group ID.
  7734.  
  7735.     geteuid
  7736.  
  7737.  -- Scheme Procedure: geteuid
  7738.      Return an integer representing the current effective user ID.  If
  7739.      the system does not support effective IDs, then the real ID is
  7740.      returned.  `(provided? 'EIDs)' reports whether the system supports
  7741.      effective IDs.
  7742.  
  7743.     getegid
  7744.  
  7745.  -- Scheme Procedure: getegid
  7746.      Return an integer representing the current effective group ID.  If
  7747.      the system does not support effective IDs, then the real ID is
  7748.      returned.  `(provided? 'EIDs)' reports whether the system supports
  7749.      effective IDs.
  7750.  
  7751.     setuid
  7752.  
  7753.  -- Scheme Procedure: setuid id
  7754.      Sets both the real and effective user IDs to the integer ID,
  7755.      provided the process has appropriate privileges.  The return value
  7756.      is unspecified.
  7757.  
  7758.     setgid
  7759.  
  7760.  -- Scheme Procedure: setgid id
  7761.      Sets both the real and effective group IDs to the integer ID,
  7762.      provided the process has appropriate privileges.  The return value
  7763.      is unspecified.
  7764.  
  7765.     seteuid
  7766.  
  7767.  -- Scheme Procedure: seteuid id
  7768.      Sets the effective user ID to the integer ID, provided the process
  7769.      has appropriate privileges.  If effective IDs are not supported,
  7770.      the real ID is set instead - `(provided? 'EIDs)' reports whether
  7771.      the system supports effective IDs.  The return value is
  7772.      unspecified.
  7773.  
  7774.     setegid
  7775.  
  7776.  -- Scheme Procedure: setegid id
  7777.      Sets the effective group ID to the integer ID, provided the process
  7778.      has appropriate privileges.  If effective IDs are not supported,
  7779.      the real ID is set instead - `(provided? 'EIDs)' reports whether
  7780.      the system supports effective IDs.  The return value is
  7781.      unspecified.
  7782.  
  7783.     getpgrp
  7784.  
  7785.  -- Scheme Procedure: getpgrp
  7786.      Return an integer representing the current process group ID.  This
  7787.      is the POSIX definition, not BSD.
  7788.  
  7789.     setpgid
  7790.  
  7791.  -- Scheme Procedure: setpgid pid pgid
  7792.      Move the process PID into the process group PGID.  PID or PGID
  7793.      must be integers: they can be zero to indicate the ID of the
  7794.      current process.  Fails on systems that do not support job control.
  7795.      The return value is unspecified.
  7796.  
  7797.     setsid
  7798.  
  7799.  -- Scheme Procedure: setsid
  7800.      Creates a new session.  The current process becomes the session
  7801.      leader and is put in a new process group.  The process will be
  7802.      detached from its controlling terminal if it has one.  The return
  7803.      value is an integer representing the new process group ID.
  7804.  
  7805.     ttyname
  7806.  
  7807.  -- Scheme Procedure: ttyname port
  7808.      Return a string with the name of the serial terminal device
  7809.      underlying PORT.
  7810.  
  7811.     ctermid
  7812.  
  7813.  -- Scheme Procedure: ctermid
  7814.      Return a string containing the file name of the controlling
  7815.      terminal for the current process.
  7816.  
  7817.     tcgetpgrp
  7818.  
  7819.  -- Scheme Procedure: tcgetpgrp port
  7820.      Return the process group ID of the foreground process group
  7821.      associated with the terminal open on the file descriptor
  7822.      underlying PORT.
  7823.  
  7824.      If there is no foreground process group, the return value is a
  7825.      number greater than 1 that does not match the process group ID of
  7826.      any existing process group.  This can happen if all of the
  7827.      processes in the job that was formerly the foreground job have
  7828.      terminated, and no other job has yet been moved into the
  7829.      foreground.
  7830.  
  7831.     tcsetpgrp
  7832.  
  7833.  -- Scheme Procedure: tcsetpgrp port pgid
  7834.      Set the foreground process group ID for the terminal used by the
  7835.      file descriptor underlying PORT to the integer PGID.  The calling
  7836.      process must be a member of the same session as PGID and must have
  7837.      the same controlling terminal.  The return value is unspecified.
  7838.  
  7839.     execl
  7840.  
  7841.  -- Scheme Procedure: execl filename . args
  7842.      Executes the file named by PATH as a new process image.  The
  7843.      remaining arguments are supplied to the process; from a C program
  7844.      they are accessible as the `argv' argument to `main'.
  7845.      Conventionally the first ARG is the same as PATH.  All arguments
  7846.      must be strings.
  7847.  
  7848.      If ARG is missing, PATH is executed with a null argument list,
  7849.      which may have system-dependent side-effects.
  7850.  
  7851.      This procedure is currently implemented using the `execv' system
  7852.      call, but we call it `execl' because of its Scheme calling
  7853.      interface.
  7854.  
  7855.     execlp
  7856.  
  7857.  -- Scheme Procedure: execlp filename . args
  7858.      Similar to `execl', however if FILENAME does not contain a slash
  7859.      then the file to execute will be located by searching the
  7860.      directories listed in the `PATH' environment variable.
  7861.  
  7862.      This procedure is currently implemented using the `execvp' system
  7863.      call, but we call it `execlp' because of its Scheme calling
  7864.      interface.
  7865.  
  7866.     execle
  7867.  
  7868.  -- Scheme Procedure: execle filename env . args
  7869.      Similar to `execl', but the environment of the new process is
  7870.      specified by ENV, which must be a list of strings as returned by
  7871.      the `environ' procedure.
  7872.  
  7873.      This procedure is currently implemented using the `execve' system
  7874.      call, but we call it `execle' because of its Scheme calling
  7875.      interface.
  7876.  
  7877.     primitive-fork
  7878.  
  7879.  -- Scheme Procedure: primitive-fork
  7880.      Creates a new "child" process by duplicating the current "parent"
  7881.      process.  In the child the return value is 0.  In the parent the
  7882.      return value is the integer process ID of the child.
  7883.  
  7884.      This procedure has been renamed from `fork' to avoid a naming
  7885.      conflict with the scsh fork.
  7886.  
  7887.     uname
  7888.  
  7889.  -- Scheme Procedure: uname
  7890.      Return an object with some information about the computer system
  7891.      the program is running on.
  7892.  
  7893.     environ
  7894.  
  7895.  -- Scheme Procedure: environ [env]
  7896.      If ENV is omitted, return the current environment (in the Unix
  7897.      sense) as a list of strings.  Otherwise set the current
  7898.      environment, which is also the default environment for child
  7899.      processes, to the supplied list of strings.  Each member of ENV
  7900.      should be of the form `NAME=VALUE' and values of `NAME' should not
  7901.      be duplicated.  If ENV is supplied then the return value is
  7902.      unspecified.
  7903.  
  7904.     tmpnam
  7905.  
  7906.  -- Scheme Procedure: tmpnam
  7907.      Return a name in the file system that does not match any existing
  7908.      file.  However there is no guarantee that another process will not
  7909.      create the file after `tmpnam' is called.  Care should be taken if
  7910.      opening the file, e.g., use the `O_EXCL' open flag or use
  7911.      `mkstemp!' instead.
  7912.  
  7913.     mkstemp!
  7914.  
  7915.  -- Scheme Procedure: mkstemp! tmpl
  7916.      Create a new unique file in the file system and return a new
  7917.      buffered port open for reading and writing to the file.
  7918.  
  7919.      TMPL is a string specifying where the file should be created: it
  7920.      must end with `XXXXXX' and those `X's will be changed in the
  7921.      string to return the name of the file.  (`port-filename' on the
  7922.      port also gives the name.)
  7923.  
  7924.      POSIX doesn't specify the permissions mode of the file, on GNU and
  7925.      most systems it's `#o600'.  An application can use `chmod' to
  7926.      relax that if desired.  For example `#o666' less `umask', which is
  7927.      usual for ordinary file creation,
  7928.  
  7929.           (let ((port (mkstemp! (string-copy "/tmp/myfile-XXXXXX"))))
  7930.             (chmod port (logand #o666 (lognot (umask))))
  7931.             ...)
  7932.  
  7933.     utime
  7934.  
  7935.  -- Scheme Procedure: utime pathname [actime [modtime]]
  7936.      `utime' sets the access and modification times for the file named
  7937.      by PATH.  If ACTIME or MODTIME is not supplied, then the current
  7938.      time is used.  ACTIME and MODTIME must be integer time values as
  7939.      returned by the `current-time' procedure.
  7940.           (utime "foo" (- (current-time) 3600))
  7941.      will set the access time to one hour in the past and the
  7942.      modification time to the current time.
  7943.  
  7944.     access?
  7945.  
  7946.  -- Scheme Procedure: access? path how
  7947.      Test accessibility of a file under the real UID and GID of the
  7948.      calling process.  The return is `#t' if PATH exists and the
  7949.      permissions requested by HOW are all allowed, or `#f' if not.
  7950.  
  7951.      HOW is an integer which is one of the following values, or a
  7952.      bitwise-OR (`logior') of multiple values.
  7953.  
  7954.       -- Variable: R_OK
  7955.           Test for read permission.
  7956.  
  7957.       -- Variable: W_OK
  7958.           Test for write permission.
  7959.  
  7960.       -- Variable: X_OK
  7961.           Test for execute permission.
  7962.  
  7963.       -- Variable: F_OK
  7964.           Test for existence of the file.  This is implied by each of
  7965.           the other tests, so there's no need to combine it with them.
  7966.  
  7967.      It's important to note that `access?' does not simply indicate
  7968.      what will happen on attempting to read or write a file.  In normal
  7969.      circumstances it does, but in a set-UID or set-GID program it
  7970.      doesn't because `access?' tests the real ID, whereas an open or
  7971.      execute attempt uses the effective ID.
  7972.  
  7973.      A program which will never run set-UID/GID can ignore the
  7974.      difference between real and effective IDs, but for maximum
  7975.      generality, especially in library functions, it's best not to use
  7976.      `access?' to predict the result of an open or execute, instead
  7977.      simply attempt that and catch any exception.
  7978.  
  7979.      The main use for `access?' is to let a set-UID/GID program
  7980.      determine what the invoking user would have been allowed to do,
  7981.      without the greater (or perhaps lesser) privileges afforded by the
  7982.      effective ID.  For more on this, see "Testing File Access" in The
  7983.      GNU C Library Reference Manual.
  7984.  
  7985.     getpid
  7986.  
  7987.  -- Scheme Procedure: getpid
  7988.      Return an integer representing the current process ID.
  7989.  
  7990.     putenv
  7991.  
  7992.  -- Scheme Procedure: putenv str
  7993.      Modifies the environment of the current process, which is also the
  7994.      default environment inherited by child processes.
  7995.  
  7996.      If STRING is of the form `NAME=VALUE' then it will be written
  7997.      directly into the environment, replacing any existing environment
  7998.      string with name matching `NAME'.  If STRING does not contain an
  7999.      equal sign, then any existing string with name matching STRING will
  8000.      be removed.
  8001.  
  8002.      The return value is unspecified.
  8003.  
  8004.     setlocale
  8005.  
  8006.  -- Scheme Procedure: setlocale category [locale]
  8007.      If LOCALE is omitted, return the current value of the specified
  8008.      locale category as a system-dependent string.  CATEGORY should be
  8009.      specified using the values `LC_COLLATE', `LC_ALL' etc.
  8010.  
  8011.      Otherwise the specified locale category is set to the string
  8012.      LOCALE and the new value is returned as a system-dependent string.
  8013.      If LOCALE is an empty string, the locale will be set using
  8014.      environment variables.
  8015.  
  8016.     mknod
  8017.  
  8018.  -- Scheme Procedure: mknod path type perms dev
  8019.      Creates a new special file, such as a file corresponding to a
  8020.      device.  PATH specifies the name of the file.  TYPE should be one
  8021.      of the following symbols: regular, directory, symlink,
  8022.      block-special, char-special, fifo, or socket.  PERMS (an integer)
  8023.      specifies the file permissions.  DEV (an integer) specifies which
  8024.      device the special file refers to.  Its exact interpretation
  8025.      depends on the kind of special file being created.
  8026.  
  8027.      E.g.,
  8028.           (mknod "/dev/fd0" 'block-special #o660 (+ (* 2 256) 2))
  8029.  
  8030.      The return value is unspecified.
  8031.  
  8032.     nice
  8033.  
  8034.  -- Scheme Procedure: nice incr
  8035.      Increment the priority of the current process by INCR.  A higher
  8036.      priority value means that the process runs less often.  The return
  8037.      value is unspecified.
  8038.  
  8039.     sync
  8040.  
  8041.  -- Scheme Procedure: sync
  8042.      Flush the operating system disk buffers.  The return value is
  8043.      unspecified.
  8044.  
  8045.     crypt
  8046.  
  8047.  -- Scheme Procedure: crypt key salt
  8048.      Encrypt KEY using SALT as the salt value to the crypt(3) library
  8049.      call.
  8050.  
  8051.     chroot
  8052.  
  8053.  -- Scheme Procedure: chroot path
  8054.      Change the root directory to that specified in PATH.  This
  8055.      directory will be used for path names beginning with `/'.  The
  8056.      root directory is inherited by all children of the current
  8057.      process.  Only the superuser may change the root directory.
  8058.  
  8059.     getlogin
  8060.  
  8061.  -- Scheme Procedure: getlogin
  8062.      Return a string containing the name of the user logged in on the
  8063.      controlling terminal of the process, or `#f' if this information
  8064.      cannot be obtained.
  8065.  
  8066.     cuserid
  8067.  
  8068.  -- Scheme Procedure: cuserid
  8069.      Return a string containing a user name associated with the
  8070.      effective user id of the process.  Return `#f' if this information
  8071.      cannot be obtained.
  8072.  
  8073.     getpriority
  8074.  
  8075.  -- Scheme Procedure: getpriority which who
  8076.      Return the scheduling priority of the process, process group or
  8077.      user, as indicated by WHICH and WHO. WHICH is one of the variables
  8078.      `PRIO_PROCESS', `PRIO_PGRP' or `PRIO_USER', and WHO is interpreted
  8079.      relative to WHICH (a process identifier for `PRIO_PROCESS',
  8080.      process group identifier for `PRIO_PGRP', and a user identifier
  8081.      for `PRIO_USER'.  A zero value of WHO denotes the current process,
  8082.      process group, or user.  Return the highest priority (lowest
  8083.      numerical value) of any of the specified processes.
  8084.  
  8085.     setpriority
  8086.  
  8087.  -- Scheme Procedure: setpriority which who prio
  8088.      Set the scheduling priority of the process, process group or user,
  8089.      as indicated by WHICH and WHO. WHICH is one of the variables
  8090.      `PRIO_PROCESS', `PRIO_PGRP' or `PRIO_USER', and WHO is interpreted
  8091.      relative to WHICH (a process identifier for `PRIO_PROCESS',
  8092.      process group identifier for `PRIO_PGRP', and a user identifier
  8093.      for `PRIO_USER'.  A zero value of WHO denotes the current process,
  8094.      process group, or user.  PRIO is a value in the range -20 and 20,
  8095.      the default priority is 0; lower priorities cause more favorable
  8096.      scheduling.  Sets the priority of all of the specified processes.
  8097.      Only the super-user may lower priorities.  The return value is not
  8098.      specified.
  8099.  
  8100.     getpass
  8101.  
  8102.  -- Scheme Procedure: getpass prompt
  8103.      Display PROMPT to the standard error output and read a password
  8104.      from `/dev/tty'.  If this file is not accessible, it reads from
  8105.      standard input.  The password may be up to 127 characters in
  8106.      length.  Additional characters and the terminating newline
  8107.      character are discarded.  While reading the password, echoing and
  8108.      the generation of signals by special characters is disabled.
  8109.  
  8110.     flock
  8111.  
  8112.  -- Scheme Procedure: flock file operation
  8113.      Apply or remove an advisory lock on an open file.  OPERATION
  8114.      specifies the action to be done:
  8115.  
  8116.       -- Variable: LOCK_SH
  8117.           Shared lock.  More than one process may hold a shared lock
  8118.           for a given file at a given time.
  8119.  
  8120.       -- Variable: LOCK_EX
  8121.           Exclusive lock.  Only one process may hold an exclusive lock
  8122.           for a given file at a given time.
  8123.  
  8124.       -- Variable: LOCK_UN
  8125.           Unlock the file.
  8126.  
  8127.       -- Variable: LOCK_NB
  8128.           Don't block when locking.  This is combined with one of the
  8129.           other operations using `logior'.  If `flock' would block an
  8130.           `EWOULDBLOCK' error is thrown.
  8131.  
  8132.      The return value is not specified. FILE may be an open file
  8133.      descriptor or an open file descriptor port.
  8134.  
  8135.      Note that `flock' does not lock files across NFS.
  8136.  
  8137.     sethostname
  8138.  
  8139.  -- Scheme Procedure: sethostname name
  8140.      Set the host name of the current processor to NAME. May only be
  8141.      used by the superuser.  The return value is not specified.
  8142.  
  8143.     gethostname
  8144.  
  8145.  -- Scheme Procedure: gethostname
  8146.      Return the host name of the current processor.
  8147.  
  8148.     gethost
  8149.  
  8150.  -- Scheme Procedure: gethost [host]
  8151.  -- Scheme Procedure: gethostbyname hostname
  8152.  -- Scheme Procedure: gethostbyaddr address
  8153.      Look up a host by name or address, returning a host object.  The
  8154.      `gethost' procedure will accept either a string name or an integer
  8155.      address; if given no arguments, it behaves like `gethostent' (see
  8156.      below).  If a name or address is supplied but the address can not
  8157.      be found, an error will be thrown to one of the keys:
  8158.      `host-not-found', `try-again', `no-recovery' or `no-data',
  8159.      corresponding to the equivalent `h_error' values.  Unusual
  8160.      conditions may result in errors thrown to the `system-error' or
  8161.      `misc_error' keys.
  8162.  
  8163.     getnet
  8164.  
  8165.  -- Scheme Procedure: getnet [net]
  8166.  -- Scheme Procedure: getnetbyname net-name
  8167.  -- Scheme Procedure: getnetbyaddr net-number
  8168.      Look up a network by name or net number in the network database.
  8169.      The NET-NAME argument must be a string, and the NET-NUMBER
  8170.      argument must be an integer.  `getnet' will accept either type of
  8171.      argument, behaving like `getnetent' (see below) if no arguments are
  8172.      given.
  8173.  
  8174.     getproto
  8175.  
  8176.  -- Scheme Procedure: getproto [protocol]
  8177.  -- Scheme Procedure: getprotobyname name
  8178.  -- Scheme Procedure: getprotobynumber number
  8179.      Look up a network protocol by name or by number.  `getprotobyname'
  8180.      takes a string argument, and `getprotobynumber' takes an integer
  8181.      argument.  `getproto' will accept either type, behaving like
  8182.      `getprotoent' (see below) if no arguments are supplied.
  8183.  
  8184.     getserv
  8185.  
  8186.  -- Scheme Procedure: getserv [name [protocol]]
  8187.  -- Scheme Procedure: getservbyname name protocol
  8188.  -- Scheme Procedure: getservbyport port protocol
  8189.      Look up a network service by name or by service number, and return
  8190.      a network service object.  The PROTOCOL argument specifies the name
  8191.      of the desired protocol; if the protocol found in the network
  8192.      service database does not match this name, a system error is
  8193.      signalled.
  8194.  
  8195.      The `getserv' procedure will take either a service name or number
  8196.      as its first argument; if given no arguments, it behaves like
  8197.      `getservent' (see below).
  8198.  
  8199.     sethost
  8200.  
  8201.  -- Scheme Procedure: sethost [stayopen]
  8202.      If STAYOPEN is omitted, this is equivalent to `endhostent'.
  8203.      Otherwise it is equivalent to `sethostent stayopen'.
  8204.  
  8205.     setnet
  8206.  
  8207.  -- Scheme Procedure: setnet [stayopen]
  8208.      If STAYOPEN is omitted, this is equivalent to `endnetent'.
  8209.      Otherwise it is equivalent to `setnetent stayopen'.
  8210.  
  8211.     setproto
  8212.  
  8213.  -- Scheme Procedure: setproto [stayopen]
  8214.      If STAYOPEN is omitted, this is equivalent to `endprotoent'.
  8215.      Otherwise it is equivalent to `setprotoent stayopen'.
  8216.  
  8217.     setserv
  8218.  
  8219.  -- Scheme Procedure: setserv [stayopen]
  8220.      If STAYOPEN is omitted, this is equivalent to `endservent'.
  8221.      Otherwise it is equivalent to `setservent stayopen'.
  8222.  
  8223.     htons
  8224.  
  8225.  -- Scheme Procedure: htons value
  8226.      Convert a 16 bit quantity from host to network byte ordering.
  8227.      VALUE is packed into 2 bytes, which are then converted and
  8228.      returned as a new integer.
  8229.  
  8230.     ntohs
  8231.  
  8232.  -- Scheme Procedure: ntohs value
  8233.      Convert a 16 bit quantity from network to host byte ordering.
  8234.      VALUE is packed into 2 bytes, which are then converted and
  8235.      returned as a new integer.
  8236.  
  8237.     htonl
  8238.  
  8239.  -- Scheme Procedure: htonl value
  8240.      Convert a 32 bit quantity from host to network byte ordering.
  8241.      VALUE is packed into 4 bytes, which are then converted and
  8242.      returned as a new integer.
  8243.  
  8244.     ntohl
  8245.  
  8246.  -- Scheme Procedure: ntohl value
  8247.      Convert a 32 bit quantity from network to host byte ordering.
  8248.      VALUE is packed into 4 bytes, which are then converted and
  8249.      returned as a new integer.
  8250.  
  8251.     inet-aton
  8252.  
  8253.  -- Scheme Procedure: inet-aton address
  8254.      Convert an IPv4 Internet address from printable string (dotted
  8255.      decimal notation) to an integer.  E.g.,
  8256.  
  8257.           (inet-aton "127.0.0.1") => 2130706433
  8258.  
  8259.     inet-ntoa
  8260.  
  8261.  -- Scheme Procedure: inet-ntoa inetid
  8262.      Convert an IPv4 Internet address to a printable (dotted decimal
  8263.      notation) string.  E.g.,
  8264.  
  8265.           (inet-ntoa 2130706433) => "127.0.0.1"
  8266.  
  8267.     inet-netof
  8268.  
  8269.  -- Scheme Procedure: inet-netof address
  8270.      Return the network number part of the given IPv4 Internet address.
  8271.      E.g.,
  8272.  
  8273.           (inet-netof 2130706433) => 127
  8274.  
  8275.     inet-lnaof
  8276.  
  8277.  -- Scheme Procedure: inet-lnaof address
  8278.      Return the local-address-with-network part of the given IPv4
  8279.      Internet address, using the obsolete class A/B/C system.  E.g.,
  8280.  
  8281.           (inet-lnaof 2130706433) => 1
  8282.  
  8283.     inet-makeaddr
  8284.  
  8285.  -- Scheme Procedure: inet-makeaddr net lna
  8286.      Make an IPv4 Internet address by combining the network number NET
  8287.      with the local-address-within-network number LNA.  E.g.,
  8288.  
  8289.           (inet-makeaddr 127 1) => 2130706433
  8290.  
  8291.     inet-pton
  8292.  
  8293.  -- Scheme Procedure: inet-pton family address
  8294.      Convert a string containing a printable network address to an
  8295.      integer address.  Note that unlike the C version of this function,
  8296.      the result is an integer with normal host byte ordering.  FAMILY
  8297.      can be `AF_INET' or `AF_INET6'.  E.g.,
  8298.  
  8299.           (inet-pton AF_INET "127.0.0.1") => 2130706433
  8300.           (inet-pton AF_INET6 "::1") => 1
  8301.  
  8302.     inet-ntop
  8303.  
  8304.  -- Scheme Procedure: inet-ntop family address
  8305.      Convert a network address into a printable string.  Note that
  8306.      unlike the C version of this function, the input is an integer
  8307.      with normal host byte ordering.  FAMILY can be `AF_INET' or
  8308.      `AF_INET6'.  E.g.,
  8309.  
  8310.           (inet-ntop AF_INET 2130706433) => "127.0.0.1"
  8311.           (inet-ntop AF_INET6 (- (expt 2 128) 1)) =>
  8312.           ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
  8313.  
  8314.     socket
  8315.  
  8316.  -- Scheme Procedure: socket family style proto
  8317.      Return a new socket port of the type specified by FAMILY, STYLE
  8318.      and PROTO.  All three parameters are integers.  Supported values
  8319.      for FAMILY are `AF_UNIX', `AF_INET' and `AF_INET6'.  Typical
  8320.      values for STYLE are `SOCK_STREAM', `SOCK_DGRAM' and `SOCK_RAW'.
  8321.  
  8322.      PROTO can be obtained from a protocol name using `getprotobyname'.
  8323.      A value of zero specifies the default protocol, which is usually
  8324.      right.
  8325.  
  8326.      A single socket port cannot by used for communication until it has
  8327.      been connected to another socket.
  8328.  
  8329.     socketpair
  8330.  
  8331.  -- Scheme Procedure: socketpair family style proto
  8332.      Return a pair of connected (but unnamed) socket ports of the type
  8333.      specified by FAMILY, STYLE and PROTO.  Many systems support only
  8334.      socket pairs of the `AF_UNIX' family.  Zero is likely to be the
  8335.      only meaningful value for PROTO.
  8336.  
  8337.     getsockopt
  8338.  
  8339.  -- Scheme Procedure: getsockopt sock level optname
  8340.      Return an option value from socket port SOCK.
  8341.  
  8342.      LEVEL is an integer specifying a protocol layer, either
  8343.      `SOL_SOCKET' for socket level options, or a protocol number from
  8344.      the `IPPROTO' constants or `getprotoent' (*note Network
  8345.      Databases::).
  8346.  
  8347.       -- Variable: SOL_SOCKET
  8348.       -- Variable: IPPROTO_IP
  8349.       -- Variable: IPPROTO_TCP
  8350.       -- Variable: IPPROTO_UDP
  8351.  
  8352.      OPTNAME is an integer specifying an option within the protocol
  8353.      layer.
  8354.  
  8355.      For `SOL_SOCKET' level the following OPTNAMEs are defined (when
  8356.      provided by the system).  For their meaning see *note Socket-Level
  8357.      Options: (libc)Socket-Level Options, or `man 7 socket'.
  8358.  
  8359.       -- Variable: SO_DEBUG
  8360.       -- Variable: SO_REUSEADDR
  8361.       -- Variable: SO_STYLE
  8362.       -- Variable: SO_TYPE
  8363.       -- Variable: SO_ERROR
  8364.       -- Variable: SO_DONTROUTE
  8365.       -- Variable: SO_BROADCAST
  8366.       -- Variable: SO_SNDBUF
  8367.       -- Variable: SO_RCVBUF
  8368.       -- Variable: SO_KEEPALIVE
  8369.       -- Variable: SO_OOBINLINE
  8370.       -- Variable: SO_NO_CHECK
  8371.       -- Variable: SO_PRIORITY
  8372.           The value returned is an integer.
  8373.  
  8374.       -- Variable: SO_LINGER
  8375.           The VALUE returned is a pair of integers `(ENABLE .
  8376.           TIMEOUT)'.  On old systems without timeout support (ie.
  8377.           without `struct linger'), only ENABLE has an effect but the
  8378.           value in Guile is always a pair.
  8379.  
  8380.     setsockopt
  8381.  
  8382.  -- Scheme Procedure: setsockopt sock level optname value
  8383.      Set an option on socket port SOCK.  The return value is
  8384.      unspecified.
  8385.  
  8386.      LEVEL is an integer specifying a protocol layer, either
  8387.      `SOL_SOCKET' for socket level options, or a protocol number from
  8388.      the `IPPROTO' constants or `getprotoent' (*note Network
  8389.      Databases::).
  8390.  
  8391.       -- Variable: SOL_SOCKET
  8392.       -- Variable: IPPROTO_IP
  8393.       -- Variable: IPPROTO_TCP
  8394.       -- Variable: IPPROTO_UDP
  8395.  
  8396.      OPTNAME is an integer specifying an option within the protocol
  8397.      layer.
  8398.  
  8399.      For `SOL_SOCKET' level the following OPTNAMEs are defined (when
  8400.      provided by the system).  For their meaning see *note Socket-Level
  8401.      Options: (libc)Socket-Level Options, or `man 7 socket'.
  8402.  
  8403.       -- Variable: SO_DEBUG
  8404.       -- Variable: SO_REUSEADDR
  8405.       -- Variable: SO_STYLE
  8406.       -- Variable: SO_TYPE
  8407.       -- Variable: SO_ERROR
  8408.       -- Variable: SO_DONTROUTE
  8409.       -- Variable: SO_BROADCAST
  8410.       -- Variable: SO_SNDBUF
  8411.       -- Variable: SO_RCVBUF
  8412.       -- Variable: SO_KEEPALIVE
  8413.       -- Variable: SO_OOBINLINE
  8414.       -- Variable: SO_NO_CHECK
  8415.       -- Variable: SO_PRIORITY
  8416.           VALUE is an integer.
  8417.  
  8418.       -- Variable: SO_LINGER
  8419.           VALUE is a pair of integers `(ENABLE . TIMEOUT)'.  On old
  8420.           systems without timeout support (ie. without `struct
  8421.           linger'), only ENABLE has an effect but the value in Guile is
  8422.           always a pair.
  8423.  
  8424.      For IP level (`IPPROTO_IP') the following OPTNAMEs are defined
  8425.      (when provided by the system).  See `man ip' for what they mean.
  8426.  
  8427.       -- Variable: IP_ADD_MEMBERSHIP
  8428.       -- Variable: IP_DROP_MEMBERSHIP
  8429.           These can be used only with `setsockopt', not `getsockopt'.
  8430.           VALUE is a pair `(MULTIADDR . INTERFACEADDR)' of IPv4
  8431.           addresses (*note Network Address Conversion::).  MULTIADDR is
  8432.           a multicast address to be added to or dropped from the
  8433.           interface INTERFACEADDR.  INTERFACEADDR can be `INADDR_ANY'
  8434.           to have the system select the interface.  INTERFACEADDR can
  8435.           also be an interface index number, on systems supporting that.
  8436.  
  8437.     shutdown
  8438.  
  8439.  -- Scheme Procedure: shutdown sock how
  8440.      Sockets can be closed simply by using `close-port'. The `shutdown'
  8441.      procedure allows reception or transmission on a connection to be
  8442.      shut down individually, according to the parameter HOW:
  8443.  
  8444.     0
  8445.           Stop receiving data for this socket.  If further data
  8446.           arrives,  reject it.
  8447.  
  8448.     1
  8449.           Stop trying to transmit data from this socket.  Discard any
  8450.           data waiting to be sent.  Stop looking for acknowledgement of
  8451.           data already sent; don't retransmit it if it is lost.
  8452.  
  8453.     2
  8454.           Stop both reception and transmission.
  8455.  
  8456.      The return value is unspecified.
  8457.  
  8458.     connect
  8459.  
  8460.  -- Scheme Procedure: connect sock fam_or_sockaddr [address . args]
  8461.      Initiate a connection from a socket using a specified address
  8462.      family to the address specified by ADDRESS and possibly ARGS.  The
  8463.      format required for ADDRESS and ARGS depends on the family of the
  8464.      socket.
  8465.  
  8466.      For a socket of family `AF_UNIX', only ADDRESS is specified and
  8467.      must be a string with the filename where the socket is to be
  8468.      created.
  8469.  
  8470.      For a socket of family `AF_INET', ADDRESS must be an integer IPv4
  8471.      host address and ARGS must be a single integer port number.
  8472.  
  8473.      For a socket of family `AF_INET6', ADDRESS must be an integer IPv6
  8474.      host address and ARGS may be up to three integers: port [flowinfo]
  8475.      [scope_id], where flowinfo and scope_id default to zero.
  8476.  
  8477.      Alternatively, the second argument can be a socket address object
  8478.      as returned by `make-socket-address', in which case the no
  8479.      additional arguments should be passed.
  8480.  
  8481.      The return value is unspecified.
  8482.  
  8483.     bind
  8484.  
  8485.  -- Scheme Procedure: bind sock fam_or_sockaddr [address . args]
  8486.      Assign an address to the socket port SOCK.  Generally this only
  8487.      needs to be done for server sockets, so they know where to look
  8488.      for incoming connections.  A socket without an address will be
  8489.      assigned one automatically when it starts communicating.
  8490.  
  8491.      The format of ADDRESS and ARGS depends on the family of the socket.
  8492.  
  8493.      For a socket of family `AF_UNIX', only ADDRESS is specified and
  8494.      must be a string with the filename where the socket is to be
  8495.      created.
  8496.  
  8497.      For a socket of family `AF_INET', ADDRESS must be an integer IPv4
  8498.      address and ARGS must be a single integer port number.
  8499.  
  8500.      The values of the following variables can also be used for ADDRESS:
  8501.  
  8502.       -- Variable: INADDR_ANY
  8503.           Allow connections from any address.
  8504.  
  8505.       -- Variable: INADDR_LOOPBACK
  8506.           The address of the local host using the loopback device.
  8507.  
  8508.       -- Variable: INADDR_BROADCAST
  8509.           The broadcast address on the local network.
  8510.  
  8511.       -- Variable: INADDR_NONE
  8512.           No address.
  8513.  
  8514.      For a socket of family `AF_INET6', ADDRESS must be an integer IPv6
  8515.      address and ARGS may be up to three integers: port [flowinfo]
  8516.      [scope_id], where flowinfo and scope_id default to zero.
  8517.  
  8518.      Alternatively, the second argument can be a socket address object
  8519.      as returned by `make-socket-address', in which case the no
  8520.      additional arguments should be passed.
  8521.  
  8522.      The return value is unspecified.
  8523.  
  8524.     listen
  8525.  
  8526.  -- Scheme Procedure: listen sock backlog
  8527.      Enable SOCK to accept connection requests.  BACKLOG is an integer
  8528.      specifying the maximum length of the queue for pending connections.
  8529.      If the queue fills, new clients will fail to connect until the
  8530.      server calls `accept' to accept a connection from the queue.
  8531.  
  8532.      The return value is unspecified.
  8533.  
  8534.     make-socket-address
  8535.  
  8536.  -- Scheme Procedure: make-socket-address family address . args
  8537.      Return a Scheme address object that reflects ADDRESS, being an
  8538.      address of family FAMILY, with the family-specific parameters ARGS
  8539.      (see the description of `connect' for details).
  8540.  
  8541.     accept
  8542.  
  8543.  -- Scheme Procedure: accept sock
  8544.      Accept a connection on a bound, listening socket.  If there are no
  8545.      pending connections in the queue, wait until one is available
  8546.      unless the non-blocking option has been set on the socket.
  8547.  
  8548.      The return value is a pair in which the _car_ is a new socket port
  8549.      for the connection and the _cdr_ is an object with address
  8550.      information about the client which initiated the connection.
  8551.  
  8552.      SOCK does not become part of the connection and will continue to
  8553.      accept new requests.
  8554.  
  8555.     getsockname
  8556.  
  8557.  -- Scheme Procedure: getsockname sock
  8558.      Return the address of SOCK, in the same form as the object
  8559.      returned by `accept'.  On many systems the address of a socket in
  8560.      the `AF_FILE' namespace cannot be read.
  8561.  
  8562.     getpeername
  8563.  
  8564.  -- Scheme Procedure: getpeername sock
  8565.      Return the address that SOCK is connected to, in the same form as
  8566.      the object returned by `accept'.  On many systems the address of a
  8567.      socket in the `AF_FILE' namespace cannot be read.
  8568.  
  8569.     recv!
  8570.  
  8571.  -- Scheme Procedure: recv! sock buf [flags]
  8572.      Receive data from a socket port.  SOCK must already be bound to
  8573.      the address from which data is to be received.  BUF is a string
  8574.      into which the data will be written.  The size of BUF limits the
  8575.      amount of data which can be received: in the case of packet
  8576.      protocols, if a packet larger than this limit is encountered then
  8577.      some data will be irrevocably lost.
  8578.  
  8579.      The optional FLAGS argument is a value or bitwise OR of MSG_OOB,
  8580.      MSG_PEEK, MSG_DONTROUTE etc.
  8581.  
  8582.      The value returned is the number of bytes read from the socket.
  8583.  
  8584.      Note that the data is read directly from the socket file
  8585.      descriptor: any unread buffered port data is ignored.
  8586.  
  8587.     send
  8588.  
  8589.  -- Scheme Procedure: send sock message [flags]
  8590.      Transmit the string MESSAGE on a socket port SOCK.  SOCK must
  8591.      already be bound to a destination address.  The value returned is
  8592.      the number of bytes transmitted - it's possible for this to be
  8593.      less than the length of MESSAGE if the socket is set to be
  8594.      non-blocking.  The optional FLAGS argument is a value or bitwise
  8595.      OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.
  8596.  
  8597.      Note that the data is written directly to the socket file
  8598.      descriptor: any unflushed buffered port data is ignored.
  8599.  
  8600.     recvfrom!
  8601.  
  8602.  -- Scheme Procedure: recvfrom! sock str [flags [start [end]]]
  8603.      Receive data from socket port SOCK (which must be already bound),
  8604.      returning the originating address as well as the data.  This is
  8605.      usually for use on datagram sockets, but can be used on
  8606.      stream-oriented sockets too.
  8607.  
  8608.      The data received is stored in the given STR, using either the
  8609.      whole string or just the region between the optional START and END
  8610.      positions.  The size of STR limits the amount of data which can be
  8611.      received.  For datagram protocols, if a packet larger than this is
  8612.      received then excess bytes are irrevocably lost.
  8613.  
  8614.      The return value is a pair.  The `car' is the number of bytes
  8615.      read.  The `cdr' is a socket address object which is where the
  8616.      data come from, or `#f' if the origin is unknown.
  8617.  
  8618.      The optional FLAGS argument is a or bitwise OR (`logior') of
  8619.      `MSG_OOB', `MSG_PEEK', `MSG_DONTROUTE' etc.
  8620.  
  8621.      Data is read directly from the socket file descriptor, any
  8622.      buffered port data is ignored.
  8623.  
  8624.      On a GNU/Linux system `recvfrom!' is not multi-threading, all
  8625.      threads stop while a `recvfrom!' call is in progress.  An
  8626.      application may need to use `select', `O_NONBLOCK' or
  8627.      `MSG_DONTWAIT' to avoid this.
  8628.  
  8629.     sendto
  8630.  
  8631.  -- Scheme Procedure: sendto sock message fam_or_sockaddr [address .
  8632.           args_and_flags]
  8633.      Transmit the string MESSAGE on the socket port SOCK.  The
  8634.      destination address is specified using the FAM, ADDRESS and
  8635.      ARGS_AND_FLAGS arguments, or just a socket address object returned
  8636.      by `make-socket-address', in a similar way to the `connect'
  8637.      procedure.  ARGS_AND_FLAGS contains the usual connection arguments
  8638.      optionally followed by a flags argument, which is a value or
  8639.      bitwise OR of MSG_OOB, MSG_PEEK, MSG_DONTROUTE etc.
  8640.  
  8641.      The value returned is the number of bytes transmitted - it's
  8642.      possible for this to be less than the length of MESSAGE if the
  8643.      socket is set to be non-blocking.  Note that the data is written
  8644.      directly to the socket file descriptor: any unflushed buffered
  8645.      port data is ignored.
  8646.  
  8647.     regexp?
  8648.  
  8649.  -- Scheme Procedure: regexp? obj
  8650.      Return `#t' if OBJ is a compiled regular expression, or `#f'
  8651.      otherwise.
  8652.  
  8653.     make-regexp
  8654.  
  8655.  -- Scheme Procedure: make-regexp pat . flags
  8656.      Compile the regular expression described by PAT, and return the
  8657.      compiled regexp structure.  If PAT does not describe a legal
  8658.      regular expression, `make-regexp' throws a
  8659.      `regular-expression-syntax' error.
  8660.  
  8661.      The FLAGS arguments change the behavior of the compiled regular
  8662.      expression.  The following flags may be supplied:
  8663.  
  8664.     `regexp/icase'
  8665.           Consider uppercase and lowercase letters to be the same when
  8666.           matching.
  8667.  
  8668.     `regexp/newline'
  8669.           If a newline appears in the target string, then permit the
  8670.           `^' and `$' operators to match immediately after or
  8671.           immediately before the newline, respectively.  Also, the `.'
  8672.           and `[^...]' operators will never match a newline character.
  8673.           The intent of this flag is to treat the target string as a
  8674.           buffer containing many lines of text, and the regular
  8675.           expression as a pattern that may match a single one of those
  8676.           lines.
  8677.  
  8678.     `regexp/basic'
  8679.           Compile a basic ("obsolete") regexp instead of the extended
  8680.           ("modern") regexps that are the default.  Basic regexps do
  8681.           not consider `|', `+' or `?' to be special characters, and
  8682.           require the `{...}' and `(...)' metacharacters to be
  8683.           backslash-escaped (*note Backslash Escapes::).  There are
  8684.           several other differences between basic and extended regular
  8685.           expressions, but these are the most significant.
  8686.  
  8687.     `regexp/extended'
  8688.           Compile an extended regular expression rather than a basic
  8689.           regexp.  This is the default behavior; this flag will not
  8690.           usually be needed.  If a call to `make-regexp' includes both
  8691.           `regexp/basic' and `regexp/extended' flags, the one which
  8692.           comes last will override the earlier one.
  8693.  
  8694.     regexp-exec
  8695.  
  8696.  -- Scheme Procedure: regexp-exec rx str [start [flags]]
  8697.      Match the compiled regular expression RX against `str'.  If the
  8698.      optional integer START argument is provided, begin matching from
  8699.      that position in the string.  Return a match structure describing
  8700.      the results of the match, or `#f' if no match could be found.
  8701.  
  8702.      The FLAGS arguments change the matching behavior.  The following
  8703.      flags may be supplied:
  8704.  
  8705.     `regexp/notbol'
  8706.           Operator `^' always fails (unless `regexp/newline' is used).
  8707.           Use this when the beginning of the string should not be
  8708.           considered the beginning of a line.
  8709.  
  8710.     `regexp/noteol'
  8711.           Operator `$' always fails (unless `regexp/newline' is used).
  8712.           Use this when the end of the string should not be considered
  8713.           the end of a line.
  8714.  
  8715.